Changeset 9667 for code/trunk/src/orxonox/Test.cc
- Timestamp:
- Aug 25, 2013, 9:08:42 PM (12 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/core6 merged: 9552-9554,9556-9574,9577-9579,9585-9593,9596-9612,9626-9662
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/Test.cc
r8858 r9667 28 28 29 29 #include "core/CoreIncludes.h" 30 #include "core/ ConfigValueIncludes.h"30 #include "core/config/ConfigValueIncludes.h" 31 31 #include "core/command/ConsoleCommand.h" 32 32 #include "network/NetworkFunction.h" … … 36 36 namespace orxonox 37 37 { 38 CreateFactory( Test );38 RegisterClass ( Test ); 39 39 40 40 SetConsoleCommand("Test", "printV1", &Test::printV1).addShortcut(); … … 56 56 Test* Test::instance_ = 0; 57 57 58 Test::Test( BaseObject* creator) : BaseObject(creator), Synchronisable(creator)58 Test::Test(Context* context) : BaseObject(context), Synchronisable(context) 59 59 { 60 60 assert(instance_==0);
Note: See TracChangeset
for help on using the changeset viewer.