Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 443


Ignore:
Timestamp:
Dec 9, 2007, 6:26:49 PM (16 years ago)
Author:
landauf
Message:

renamed IdentifierIncludes.h to CoreIncludes.h

Location:
code/branches/objecthierarchy/src
Files:
6 edited
1 moved

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/CMakeLists.txt

    r434 r443  
    33# create a few variables to simplify life
    44SET(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)
     5SET(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)
    66
    77#Creates an executable
  • code/branches/objecthierarchy/src/orxonox/core/CoreIncludes.h

    r434 r443  
    11/**
    2     @file IDentifierIncludes.h
     2    @file CoreIncludes.h
    33    @brief Definition of macros for the class-hierarchy and the factory.
    44
  • code/branches/objecthierarchy/src/orxonox/objects/BaseObject.h

    r366 r443  
    22#define _BaseObject_H__
    33
    4 #include "../core/IdentifierIncludes.h"
     4#include "../core/CoreIncludes.h"
    55
    66namespace orxonox
  • code/branches/objecthierarchy/src/orxonox/objects/Test.h

    r258 r443  
    33
    44#include "BaseObject.h"
    5 #include "../core/IdentifierIncludes.h"
     5#include "../core/CoreIncludes.h"
    66
    77namespace orxonox
  • code/branches/objecthierarchy/src/orxonox/objects/Tickable.h

    r434 r443  
    22#define _Tickable_H__
    33
    4 #include "../core/IdentifierIncludes.h"
     4#include "../core/CoreIncludes.h"
    55#include "OgreFrameListener.h"
    66
  • code/branches/objecthierarchy/src/orxonox/objects/Timer.h

    r434 r443  
    22#define _Timer_H__
    33
    4 #include "../core/IdentifierIncludes.h"
     4#include "../core/CoreIncludes.h"
    55#include "OgreFrameListener.h"
    66
  • code/branches/objecthierarchy/src/orxonox/orxonox.cc

    r434 r443  
    4242//#include "../loader/LevelLoader.h"
    4343
    44 #include "core/IdentifierIncludes.h"
     44#include "core/CoreIncludes.h"
    4545#include "objects/Tickable.h"
    4646#include "objects/Timer.h"
Note: See TracChangeset for help on using the changeset viewer.