Changeset 6194 for code/branches/presentation2/src/libraries/core
- Timestamp:
- Dec 2, 2009, 1:34:55 PM (15 years ago)
- Location:
- code/branches/presentation2/src/libraries/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/libraries/core/CMakeLists.txt
r6150 r6194 86 86 TOLUA_FILES 87 87 CommandExecutor.h 88 ConfigFileManager.h 88 89 Game.h 89 90 Loader.h -
code/branches/presentation2/src/libraries/core/ConfigFileManager.h
r6105 r6194 40 40 #include "util/Singleton.h" 41 41 42 // tolua_begin 42 43 namespace orxonox 43 44 { 45 // tolua_end 44 46 // Use int as config file type to have an arbitrary number of files 45 47 struct ConfigFileType : OrxEnum<ConfigFileType> … … 54 56 }; 55 57 56 _CoreExport bool config(const std::string& classname, const std::string& varname, const std::string& value); 58 _CoreExport bool config(const std::string& classname, const std::string& varname, const std::string& value); // tolua_export 57 59 _CoreExport bool tconfig(const std::string& classname, const std::string& varname, const std::string& value); 58 60 _CoreExport void reloadConfig(); … … 319 321 static ConfigFileManager* singletonPtr_s; 320 322 }; 321 } 323 } // tolua_export 322 324 323 325 #endif /* _ConfigFileManager_H__ */
Note: See TracChangeset
for help on using the changeset viewer.