Changeset 9567 for code/branches
- Timestamp:
- Mar 24, 2013, 7:18:06 PM (12 years ago)
- Location:
- code/branches/core6/src
- Files:
-
- 8 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 } -
code/branches/core6/src/modules/notifications/NotificationManager.h
r9563 r9567 42 42 #include <string> 43 43 44 #include "core/class/OrxonoxClass.h"45 44 #include "util/Singleton.h" 46 45 #include "interfaces/NotificationListener.h" -
code/branches/core6/src/modules/weapons/projectiles/BasicProjectile.cc
r8855 r9567 46 46 Constructor. Registers the object and initializes some default values. 47 47 */ 48 BasicProjectile::BasicProjectile() : OrxonoxClass()48 BasicProjectile::BasicProjectile() 49 49 { 50 50 RegisterRootObject(BasicProjectile);// Register the BasicProjectile class to the core -
code/branches/core6/src/orxonox/controllers/FormationController.h
r9563 r9567 36 36 37 37 #include "util/Math.h" 38 #include "core/class/OrxonoxClass.h"39 38 #include "controllers/Controller.h" 40 39 #include "worldentities/ControllableEntity.h" -
code/branches/core6/src/orxonox/gamestates/GSLevel.h
r9563 r9567 34 34 #include <string> 35 35 #include <set> 36 #include "core/class/OrxonoxClass.h"37 36 #include "core/GameState.h" 38 37
Note: See TracChangeset
for help on using the changeset viewer.