Changeset 443
- Timestamp:
- Dec 9, 2007, 6:26:49 PM (17 years ago)
- Location:
- code/branches/objecthierarchy/src
- Files:
-
- 6 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchy/src/CMakeLists.txt
r434 r443 3 3 # create a few variables to simplify life 4 4 SET(SRC_FILES orxonox/orxonox.cc loader/LevelLoader.cc xml/xmlParser.cc orxonox/core/IdentifierList.cc orxonox/core/Identifier.cc orxonox/core/MetaObjectList.cc orxonox/core/Factory.cc orxonox/core/OrxonoxClass.cc orxonox/core/ConfigValueContainer.cc orxonox/objects/BaseObject.cc orxonox/objects/test1.cc orxonox/objects/test2.cc orxonox/objects/test3.cc) 5 SET(INC_FILES loader/LevelLoader.h xml/xmlParser.h orxonox/core/ IdentifierIncludes.h orxonox/core/Identifier.h orxonox/core/Factory.h orxonox/core/ClassFactory.h orxonox/core/IdentifierList.h orxonox/core/ObjectList.h orxonox/core/MetaObjectList.h orxonox/core/Iterator.h orxonox/core/OrxonoxClass.h orxonox/core/ConfigValueContainer.h orxonox/objects/BaseObject.h orxonox/objects/Test.h orxonox/objects/test1.h orxonox/objects/test2.h orxonox/objects/test3.h orxonox/objects/Tickable.h orxonox/objects/Timer.h)5 SET(INC_FILES loader/LevelLoader.h xml/xmlParser.h orxonox/core/CoreIncludes.h orxonox/core/Identifier.h orxonox/core/Factory.h orxonox/core/ClassFactory.h orxonox/core/IdentifierList.h orxonox/core/ObjectList.h orxonox/core/MetaObjectList.h orxonox/core/Iterator.h orxonox/core/OrxonoxClass.h orxonox/core/ConfigValueContainer.h orxonox/objects/BaseObject.h orxonox/objects/Test.h orxonox/objects/test1.h orxonox/objects/test2.h orxonox/objects/test3.h orxonox/objects/Tickable.h orxonox/objects/Timer.h) 6 6 7 7 #Creates an executable -
code/branches/objecthierarchy/src/orxonox/core/CoreIncludes.h
r434 r443 1 1 /** 2 @file IDentifierIncludes.h2 @file CoreIncludes.h 3 3 @brief Definition of macros for the class-hierarchy and the factory. 4 4 -
code/branches/objecthierarchy/src/orxonox/objects/BaseObject.h
r366 r443 2 2 #define _BaseObject_H__ 3 3 4 #include "../core/ IdentifierIncludes.h"4 #include "../core/CoreIncludes.h" 5 5 6 6 namespace orxonox -
code/branches/objecthierarchy/src/orxonox/objects/Test.h
r258 r443 3 3 4 4 #include "BaseObject.h" 5 #include "../core/ IdentifierIncludes.h"5 #include "../core/CoreIncludes.h" 6 6 7 7 namespace orxonox -
code/branches/objecthierarchy/src/orxonox/objects/Tickable.h
r434 r443 2 2 #define _Tickable_H__ 3 3 4 #include "../core/ IdentifierIncludes.h"4 #include "../core/CoreIncludes.h" 5 5 #include "OgreFrameListener.h" 6 6 -
code/branches/objecthierarchy/src/orxonox/objects/Timer.h
r434 r443 2 2 #define _Timer_H__ 3 3 4 #include "../core/ IdentifierIncludes.h"4 #include "../core/CoreIncludes.h" 5 5 #include "OgreFrameListener.h" 6 6 -
code/branches/objecthierarchy/src/orxonox/orxonox.cc
r434 r443 42 42 //#include "../loader/LevelLoader.h" 43 43 44 #include "core/ IdentifierIncludes.h"44 #include "core/CoreIncludes.h" 45 45 #include "objects/Tickable.h" 46 46 #include "objects/Timer.h"
Note: See TracChangeset
for help on using the changeset viewer.