Changeset 1064 for code/trunk/src/core
- Timestamp:
- Apr 14, 2008, 9:39:57 PM (17 years ago)
- Location:
- code/trunk/src/core
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/CommandExecutor.h
r1062 r1064 161 161 private: 162 162 CommandExecutor() {} 163 CommandExecutor(const CommandExecutor& other) {}163 CommandExecutor(const CommandExecutor& other); 164 164 ~CommandExecutor() {} 165 165 -
code/trunk/src/core/ConfigFileManager.h
r1062 r1064 286 286 private: 287 287 ConfigFileManager(); 288 ConfigFileManager(const ConfigFileManager& other) {}288 ConfigFileManager(const ConfigFileManager& other); 289 289 ~ConfigFileManager(); 290 290 -
code/trunk/src/core/CoreSettings.h
r1062 r1064 61 61 62 62 CoreSettings(); 63 CoreSettings(const CoreSettings& other) {}63 CoreSettings(const CoreSettings& other); 64 64 virtual ~CoreSettings(); 65 65 -
code/trunk/src/core/Factory.h
r1062 r1064 71 71 private: 72 72 Factory() {} // don't create 73 Factory(const Factory& factory) {}// don't copy73 Factory(const Factory& factory); // don't copy 74 74 ~Factory() {} // don't delete 75 75 -
code/trunk/src/core/Functor.h
r1062 r1064 429 429 430 430 431 431 // disable annoying warning about forcing value to boolean 432 #if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC 433 #pragma warning(push) 434 #pragma warning(disable:4100 4800) 435 #endif 432 436 433 437 #define CREATE_ALL_STATIC_FUNCTORS() \ … … 465 469 } 466 470 471 #if ORXONOX_COMPILER == ORXONOX_COMPILER_MSVC 472 #pragma warning(pop) 473 #endif 474 467 475 #endif /* _Functor_H__ */ -
code/trunk/src/core/Identifier.h
r1063 r1064 225 225 private: 226 226 Identifier(); 227 Identifier(const Identifier& identifier) {}// don't copy227 Identifier(const Identifier& identifier); // don't copy 228 228 virtual ~Identifier(); 229 229 void initialize(std::set<const Identifier*>* parents); -
code/trunk/src/core/IdentifierDistributor.h
r1062 r1064 53 53 private: 54 54 IdentifierDistributor() {}; // Don't create 55 IdentifierDistributor(const IdentifierDistributor& distributor) {}// Don't copy55 IdentifierDistributor(const IdentifierDistributor& distributor); // Don't copy 56 56 ~IdentifierDistributor() {} // Don't delete 57 57 -
code/trunk/src/core/Language.h
r1062 r1064 123 123 private: 124 124 Language(); 125 Language(const Language& language) {}// don't copy125 Language(const Language& language); // don't copy 126 126 virtual ~Language() {}; // don't delete 127 127 -
code/trunk/src/core/OutputHandler.h
r1062 r1064 114 114 private: 115 115 explicit OutputHandler(const std::string& logfilename); 116 OutputHandler(const OutputHandler& oh) {};// don't copy116 OutputHandler(const OutputHandler& oh); // don't copy 117 117 virtual ~OutputHandler(); 118 118 std::ofstream logfile_; //!< The logfile where the output is logged
Note: See TracChangeset
for help on using the changeset viewer.