Changeset 9567 for code/branches/core6/src/libraries
- Timestamp:
- Mar 24, 2013, 7:18:06 PM (12 years ago)
- Location:
- code/branches/core6/src/libraries/core
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/libraries/core/CoreIncludes.h
r9564 r9567 165 165 /** 166 166 @brief Returns the Identifier with a given 'this' pointer. 167 @note This of course only works with OrxonoxClasses.167 @note This of course only works with Identifiables. 168 168 The only use is in conjunction with macros that don't know the class type. 169 @param object Pointer to an OrxonoxClass169 @param object Pointer to an Identifiable 170 170 */ 171 171 template <class T> -
code/branches/core6/src/libraries/core/GUIManager.h
r9563 r9567 49 49 #include "util/Singleton.h" 50 50 #include "input/InputHandler.h" 51 #include "class/OrxonoxClass.h"52 51 #include "WindowEventListener.h" 53 52 -
code/branches/core6/src/libraries/core/class/Identifiable.cc
r9565 r9567 29 29 /** 30 30 @file 31 @brief Implementation of OrxonoxClass.31 @brief Implementation of Identifiable. 32 32 */ 33 33 -
code/branches/core6/src/libraries/core/command/Shell.h
r9563 r9567 200 200 unsigned int historyOffset_; ///< The command history is a circular buffer, this variable defines the current write-offset 201 201 std::vector<std::string> commandHistory_; ///< The history of commands that were entered by the user 202 static unsigned int cacheSize_s; ///< The maximum cache size of the CommandExecutor - this is stored here for better readability of the config file and because CommandExecutor is no OrxonoxClass202 static unsigned int cacheSize_s; ///< The maximum cache size of the CommandExecutor - this is stored here for better readability of the config file and because CommandExecutor is not configurable 203 203 }; 204 204 }
Note: See TracChangeset
for help on using the changeset viewer.