Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 673


Ignore:
Timestamp:
Dec 22, 2007, 10:15:06 PM (16 years ago)
Author:
rgrieder
Message:
  • deleted obsolete classes: BaseEntity, Entity, Light and SceneNode (please complain if not agreed)
  • improved include guard naming consistency
Location:
code/branches/FICN
Files:
8 deleted
68 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/FICN.sln

    r669 r673  
    2626                {E283910F-F911-40FB-A09D-D025CA821912} = {E283910F-F911-40FB-A09D-D025CA821912}
    2727                {4733BD1A-E04C-458D-8BFB-5010250EA497} = {4733BD1A-E04C-458D-8BFB-5010250EA497}
    28         EndProjectSection
    29 EndProject
    30 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Weapon", "weapon.vcproj", "{ED1E93A7-5DB2-4417-B684-A8FDD61FB567}"
    31         ProjectSection(WebsiteProperties) = preProject
    32                 Debug.AspNetCompiler.Debug = "True"
    33                 Release.AspNetCompiler.Debug = "False"
    3428        EndProjectSection
    3529EndProject
     
    7771                {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release|Win32.ActiveCfg = Release|Win32
    7872                {0B6C5CFD-F91B-432A-80A3-2610F61E060B}.Release|Win32.Build.0 = Release|Win32
    79                 {ED1E93A7-5DB2-4417-B684-A8FDD61FB567}.Debug|Win32.ActiveCfg = Debug|Win32
    80                 {ED1E93A7-5DB2-4417-B684-A8FDD61FB567}.Release|Win32.ActiveCfg = Release|Win32
    8173                {4733BD1A-E04C-458D-8BFB-5010250EA497}.Debug|Win32.ActiveCfg = Debug|Win32
    8274                {4733BD1A-E04C-458D-8BFB-5010250EA497}.Debug|Win32.Build.0 = Debug|Win32
  • code/branches/FICN/benixonox.vcproj

    r669 r673  
    225225                                </File>
    226226                                <File
    227                                         RelativePath=".\src\orxonox\objects\BaseEntity.cc"
    228                                         >
    229                                 </File>
    230                                 <File
    231227                                        RelativePath=".\src\orxonox\objects\BaseObject.cc"
    232228                                        >
     
    241237                                </File>
    242238                                <File
    243                                         RelativePath=".\src\orxonox\objects\Entity.cc"
    244                                         >
    245                                 </File>
    246                                 <File
    247239                                        RelativePath=".\src\orxonox\objects\Explosion.cc"
    248240                                        >
     
    253245                                </File>
    254246                                <File
    255                                         RelativePath=".\src\orxonox\objects\Light.cc"
    256                                         >
    257                                 </File>
    258                                 <File
    259247                                        RelativePath=".\src\orxonox\objects\Mesh.cc"
    260248                                        >
     
    273261                                </File>
    274262                                <File
    275                                         RelativePath=".\src\orxonox\objects\SceneNode.cc"
    276                                         >
    277                                 </File>
    278                                 <File
    279263                                        RelativePath=".\src\orxonox\objects\Skybox.cc"
    280264                                        >
     
    282266                                <File
    283267                                        RelativePath=".\src\orxonox\objects\SpaceShip.cc"
    284                                         >
    285                                 </File>
    286                                 <File
    287                                         RelativePath=".\src\orxonox\objects\test1.cc"
    288                                         >
    289                                 </File>
    290                                 <File
    291                                         RelativePath=".\src\orxonox\objects\test2.cc"
    292                                         >
    293                                 </File>
    294                                 <File
    295                                         RelativePath=".\src\orxonox\objects\test3.cc"
    296268                                        >
    297269                                </File>
     
    391363                                </File>
    392364                                <File
    393                                         RelativePath=".\src\orxonox\objects\BaseEntity.h"
    394                                         >
    395                                 </File>
    396                                 <File
    397365                                        RelativePath=".\src\orxonox\objects\BaseObject.h"
    398366                                        >
     
    407375                                </File>
    408376                                <File
    409                                         RelativePath=".\src\orxonox\objects\Entity.h"
    410                                         >
    411                                 </File>
    412                                 <File
    413377                                        RelativePath=".\src\orxonox\objects\Explosion.h"
    414378                                        >
     
    419383                                </File>
    420384                                <File
    421                                         RelativePath=".\src\orxonox\objects\Light.h"
    422                                         >
    423                                 </File>
    424                                 <File
    425385                                        RelativePath=".\src\orxonox\objects\Mesh.h"
    426386                                        >
     
    436396                                <File
    437397                                        RelativePath=".\src\orxonox\objects\Projectile.h"
    438                                         >
    439                                 </File>
    440                                 <File
    441                                         RelativePath=".\src\orxonox\objects\SceneNode.h"
    442398                                        >
    443399                                </File>
  • code/branches/FICN/src/audio/AudioBuffer.h

    r409 r673  
    1 #ifndef AUDIOBUFFER_H_
    2 #define AUDIOBUFFER_H_
     1#ifndef _AudioBuffer_H__
     2#define _AudioBuffer_H__
    33
    44#include "AudioIncludes.h"
     
    2727}
    2828
    29 #endif /*AUDIOBUFFER_H_*/
     29#endif /* _AudioBuffer_H__ */
  • code/branches/FICN/src/audio/AudioManager.h

    r430 r673  
    1 #ifndef AUDIOMANAGER_H_
    2 #define AUDIOMANAGER_H_
     1#ifndef _AudioManager_H__
     2#define _AudioManager_H__
    33
    44#include "AudioIncludes.h"
     
    6565}
    6666
    67 #endif /*AUDIOMANAGER_H_*/
     67#endif /* _AudioManager_H__ */
  • code/branches/FICN/src/audio/AudioSource.h

    r409 r673  
    1 #ifndef AUDIOSOURCE_H_
    2 #define AUDIOSOURCE_H_
     1#ifndef _AudioSource_H__
     2#define _AudioSource_H__
    33
    44#include "AudioIncludes.h"
     
    1616}
    1717
    18 #endif /*AUDIOSOURCE_H_*/
     18#endif /* _AudioSource_H__ */
  • code/branches/FICN/src/audio/AudioStream.h

    r430 r673  
    1 #ifndef __ogg_h__
    2 #define __ogg_h__
     1#ifndef _AudioStream_H__
     2#define _AudioStream_H__
    33
    44#include "AudioIncludes.h"
     
    4343}
    4444
    45 #endif // __ogg_h__
     45#endif /* _AudioStream_H__ */
  • code/branches/FICN/src/loader/LevelLoader.h

    r660 r673  
    55* @author Nicolas Perrenoud <nicolape@ee.ethz.ch>
    66*/
     7
     8#ifndef _LevelLoader_H__
     9#define _LevelLoader_H__
    710
    811#include <string>
     
    1518//#include "xml/xmlParser.h"
    1619
    17 #ifndef __MODULE_LEVELLOADER__
    18 #define __MODULE_LEVELLOADER__
    19 
    20 using namespace std;
    2120
    2221namespace loader
     
    2625  public:
    2726    // Constructors, loads the level file and some information data
    28     LevelLoader(string file, string dir="levels");
     27    LevelLoader(std::string file, std::string dir="levels");
    2928    // Destructor
    3029    ~LevelLoader();
     
    3332
    3433    // Getters
    35     inline string name() {return name_; };
    36     inline string description() {return description_; };
    37     inline string image() {return image_; };
     34    inline std::string name() {return name_; };
     35    inline std::string description() {return description_; };
     36    inline std::string image() {return image_; };
    3837  private:
    3938    //! Level information
     
    5655    TiXmlElement* rootElement;
    5756
    58 
    5957  };
    6058}
    61 #endif
     59
     60#endif /* _LevelLoader_H__ */
  • code/branches/FICN/src/loader/loader_platform.h

    r553 r673  
    2727
    2828
    29 #ifndef LOADER_PLATFORM_H
    30 #define LOADER_PLATFORM_H
     29#ifndef _LoaderPlatform_H__
     30#define _LoaderPlatform_H__
    3131
    3232
     
    4444
    4545
    46 #endif /* LOADER_PLATFORM_H */
     46#endif /* _LoaderPlatform_H__ */
  • code/branches/FICN/src/network/Client.h

    r496 r673  
    1111//
    1212
    13 #ifndef NETWORK_CLIENT_H
    14 #define NETWORK_CLIENT_H
     13#ifndef _Client_H__
     14#define _Client_H__
    1515
    1616#include <string>
     
    6969}
    7070
    71 #endif
     71#endif /* _Client_H__ */
  • code/branches/FICN/src/network/ClientConnection.h

    r658 r673  
    1010//
    1111//
    12 #ifndef NETWORK_CLIENTCONNECTION_H
    13 #define NETWORK_CLIENTCONNECTION_H
     12#ifndef _ClientConnection_H__
     13#define _ClientConnection_H__
    1414
    1515#include <iostream>
     
    7878}
    7979
    80 #endif
     80#endif /* _ClientConnection_H__ */
  • code/branches/FICN/src/network/ClientInformation.h

    r636 r673  
    1010//
    1111//
    12 #ifndef NETWORKCLIENTINFORMATION_H
    13 #define NETWORKCLIENTINFORMATION_H
     12#ifndef _ClientInformation_H__
     13#define _ClientInformation_H__
    1414
    1515#include <enet/enet.h>
     
    6666}
    6767
    68 #endif
     68#endif /* _ClientInformation_H__ */
  • code/branches/FICN/src/network/ConnectionManager.h

    r496 r673  
    1010//
    1111//
    12 #ifndef NETWORK_CONNECTIONMANAGER_H
    13 #define NETWORK_CONNECTIONMANAGER_H
     12#ifndef _ConnectionManager_H__
     13#define _ConnectionManager_H__
    1414
    1515#include <iostream>
     
    8888}
    8989
    90 #endif
     90#endif /* _ConnectionManager_H__ */
  • code/branches/FICN/src/network/GameStateClient.h

    r620 r673  
    1010//
    1111//
    12 #ifndef NETWORK_GAMESTATECLIENT_H
    13 #define NETWORK_GAMESTATECLIENT_H
     12#ifndef _GameStateClient_H__
     13#define _GameStateClient_H__
    1414
    1515#include "zlib.h"
     
    4242}
    4343
    44 #endif
     44#endif /* _GameStateClient_H__ */
  • code/branches/FICN/src/network/GameStateManager.h

    r624 r673  
    1010//
    1111//
    12 #ifndef NETWORK_GAMESTATEMANAGER_H
    13 #define NETWORK_GAMESTATEMANAGER_H
     12#ifndef _GameStateManager_H__
     13#define _GameStateManager_H__
    1414
    1515#include <map>
     
    6666}
    6767
    68 #endif
     68#endif /* _GameStateManager_H__ */
  • code/branches/FICN/src/network/NetworkFrameListener.h

    r614 r673  
    1111//
    1212
    13 #ifndef NETWORKFRAMELISTENER_H
    14 #define NETWORKFRAMELISTENER_H
     13#ifndef _NetworkFrameListener_H__
     14#define _NetworkFrameListener_H__
    1515
    1616#include "OgreFrameListener.h"
     
    4747}
    4848
    49 #endif
     49#endif /* _NetworkFrameListener_H__ */
  • code/branches/FICN/src/network/PacketBuffer.h

    r337 r673  
    1111//
    1212
    13 #ifndef NETWORK_PACKETBUFFER_H
    14 #define NETWORK_PACKETBUFFER_H
     13#ifndef _PacketBuffer_H__
     14#define _PacketBuffer_H__
    1515
    1616#include <queue>
     
    5656
    5757} //namespace
    58 #endif /* NETWORK_PACKETBUFFER_H */
     58#endif /* _PacketBuffer_H__ */
  • code/branches/FICN/src/network/PacketManager.h

    r620 r673  
    1 #ifndef PACKETMANAGER_H_
    2 #define PACKETMANAGER_H_
     1#ifndef _PacketManager_H__
     2#define _PacketManager_H__
    33
    44#include <string>
     
    8181}
    8282
    83 #endif /*PACKETMANAGER_H_*/
     83#endif /* _PacketManager_H__ */
  • code/branches/FICN/src/network/PacketTypes.h

    r592 r673  
    1111//
    1212
    13 #ifndef NETWORK_PACKETTYPES_H
    14 #define NETWORK_PACKETTYPES_H
     13#ifndef _PacketTypes_H__
     14#define _PacketTypes_H__
    1515
    1616namespace network{
     
    8585}
    8686
    87 #endif
     87#endif /* _PacketTypes_H__ */
  • code/branches/FICN/src/network/Server.h

    r620 r673  
    1111//
    1212
    13 #ifndef NETWORK_SERVER_H
    14 #define NETWORK_SERVER_H
     13#ifndef _Server_H__
     14#define _Server_H__
    1515
    1616#include <string>
     
    6060}
    6161
    62 #endif
     62#endif /* _Server_H__ */
  • code/branches/FICN/src/network/Synchronisable.h

    r630 r673  
    1010//
    1111//
    12 #ifndef NETWORK_SYNCHRONISABLE_H
    13 #define NETWORK_SYNCHRONISABLE_H
     12#ifndef _Synchronisable_H__
     13#define _Synchronisable_H__
    1414
    1515#include <list>
     
    7171}
    7272
    73 #endif
     73#endif /* _Synchronisable_H__ */
  • code/branches/FICN/src/orxonox/AIClass.h

    r597 r673  
    1 #ifndef AI_Class
    2 #define AI_Class
     1#ifndef _AIClass_H__
     2#define _AIClass_H__
    33
    44#include <Ogre.h>
     
    88#include <iostream>
    99
    10 
    11 #endif
    12 
     10// FIXME: using namespace xy; in header files is a very bad idea..
    1311using namespace std;
    1412using namespace Ogre;
     
    9896
    9997};
     98
     99#endif /* _AIClass_H__ */
  • code/branches/FICN/src/orxonox/Arrival.h

    r618 r673  
    33
    44
    5 #ifndef Arrival_Class
    6 #define Arrical_Class
     5#ifndef _Arrival_H__
     6#define _Arrival_H__
    77
    88// #include <Ogre.h>
     
    1212#include <iostream>
    1313
    14 
    15 #endif
    16 
     14// FIXME: using namspace xy; in header files is a bad idea
    1715using namespace std;
    1816using namespace Ogre;
     
    8785  }
    8886}
     87
     88#endif /* _Arrival_H__ */
  • code/branches/FICN/src/orxonox/CMakeLists.txt

    r671 r673  
    2525    objects/Ambient.cc
    2626    objects/Skybox.cc
    27     objects/SceneNode.cc
    28     objects/Entity.cc
     27#    objects/SceneNode.cc
     28#    objects/Entity.cc
    2929    objects/Camera.cc
    3030#    objects/SpaceshipSteeringObject.cc
    3131    objects/Model.cc
    3232    objects/Mesh.cc
    33     objects/BaseEntity.cc
     33#    objects/BaseEntity.cc
    3434    objects/SpaceShip.cc
    3535    objects/NPC.cc
    3636    objects/BillboardSet.cc
    37     objects/Light.cc
     37#    objects/Light.cc
    3838    objects/Projectile.cc
    3939    objects/weapon_system/AmmunitionDump.cc
  • code/branches/FICN/src/orxonox/Flocking.h

    r618 r673  
    22//Headerfile: Flocking.h
    33
    4 #ifndef Flocking_Class
    5 #define Flocking_Class
     4#ifndef _Flocking_H__
     5#define _Flocking_H__
    66
    77// #include <Ogre.h>
     
    1111#include <iostream>
    1212
    13 
    14 #endif
    1513
    1614
     
    142140  }
    143141};     //End of class Element
     142
     143#endif /* _Flocking_H__*/
  • code/branches/FICN/src/orxonox/GraphicsEngine.h

    r614 r673  
    55 */
    66
    7 #ifndef GRAPHICS_ENGINE_H
    8 #define GRAPHICS_ENGINE_H
     7#ifndef _GraphicsEngine_H__
     8#define _GraphicsEngine_H__
    99
    1010#include <OgreRoot.h>
     
    4040}
    4141
    42 #endif
    43 
     42#endif /* _GraphicsEngine_H__ */
  • code/branches/FICN/src/orxonox/InputManager.h

    r533 r673  
    1 #ifndef InputManager_H
    2 #define InputManager_H
     1#ifndef _InputManager_H__
     2#define _InputManager_H__
    33
    44#ifdef WIN32
     
    8989    static InputManager *mInputManager;
    9090};
    91 #endif
     91#endif /* _InputManager_H__ */
  • code/branches/FICN/src/orxonox/Orxonox.cc

    r672 r673  
    4949#include <string>
    5050#include <iostream>
     51#include <exception>
    5152
    5253//***** ORXONOX ****
     
    283284      COUT(3) << "Info: network framelistener added" << std::endl;
    284285    }
    285     catch(exception &e)
     286    catch(std::exception &e)
    286287    {
    287288      COUT(1) << "Error: There was a problem initialising the server :(" << std::endl;
  • code/branches/FICN/src/orxonox/Orxonox.h

    r637 r673  
    55 */
    66
    7 #ifndef ORXONOX_H
    8 #define ORXONOX_H
     7#ifndef _Orxonox_H__
     8#define _Orxonox_H__
    99
    1010#include <OgrePrerequisites.h>
     
    8181  };
    8282}
    83 #endif /* ORXONOX_H */
     83#endif /* _Orxonox_H__ */
  • code/branches/FICN/src/orxonox/OrxonoxPrereqs.h

    r637 r673  
    3131 */
    3232
    33 #ifndef ORXONOX_PREREQ_H
    34 #define ORXONOX_PREREQ_H
     33#ifndef _OrxonoxPrereqs_H__
     34#define _OrxonoxPrereqs_H__
    3535
    3636// hack for the usleep/Sleep problem
     
    159159}
    160160
    161 #endif /* ORXONOX_PREREQ_H */
     161#endif /* _OrxonoxPrereqs_H__ */
  • code/branches/FICN/src/orxonox/SpaceshipSteering.h

    r612 r673  
    1 #ifndef SPACESHIP_STEERING_H
    2 #define SPACESHIP_STEERING_H
     1#ifndef _SpaceShipSteering_H__
     2#define _SpaceShipSteering_H__
    33
    44#include "OgrePrerequisites.h"
     
    6060
    6161
    62 #endif
     62#endif /* _SpaceShipSteering_H__ */
  • code/branches/FICN/src/orxonox/core/ArgReader.h

    r598 r673  
    55 */
    66
    7 #ifndef __ARGREADER_CLASS__
    8 #define __ARGREADER_CLASS__
     7#ifndef _ArgReader_H__
     8#define _ArgReader_H__
    99
    1010#include <string>
     
    3131
    3232}
    33 #endif
     33#endif /* _ArgReader_H__ */
  • code/branches/FICN/src/orxonox/core/ClassFactory.h

    r670 r673  
    9595}
    9696
    97 #endif
     97#endif /* _ClassFactory_H__ */
  • code/branches/FICN/src/orxonox/core/ConfigValueContainer.h

    r667 r673  
    135135}
    136136
    137 #endif
     137#endif /* _ConfigValueContainer_H__ */
  • code/branches/FICN/src/orxonox/core/DebugLevel.h

    r562 r673  
    1919}
    2020
    21 #endif
     21#endif /* _DebugLevel_H__ */
  • code/branches/FICN/src/orxonox/core/Error.h

    r421 r673  
    1 #ifndef __ERROR_CLASS__
    2 #define __ERROR_CLASS__
     1#ifndef _Error_H__
     2#define _Error_H__
    33
    44#include <iostream>
     
    1818}
    1919
    20 #endif
     20#endif /* _Error_H__ */
  • code/branches/FICN/src/orxonox/core/Factory.h

    r564 r673  
    6161}
    6262
    63 #endif
     63#endif /* _Factory_H__ */
  • code/branches/FICN/src/orxonox/core/Identifier.h

    r592 r673  
    370370}
    371371
    372 #endif
     372#endif /* _Identifier_H__ */
  • code/branches/FICN/src/orxonox/core/IdentifierList.h

    r384 r673  
    4141}
    4242
    43 #endif
     43#endif /* _IdentifierList_H__ */
  • code/branches/FICN/src/orxonox/core/Iterator.h

    r670 r673  
    161161}
    162162
    163 #endif
     163#endif /* _Iterator_H__ */
  • code/branches/FICN/src/orxonox/core/MetaObjectList.h

    r496 r673  
    109109}
    110110
    111 #endif
     111#endif /* _MetaObjectList_H__ */
  • code/branches/FICN/src/orxonox/core/ObjectList.h

    r670 r673  
    264264}
    265265
    266 #endif
     266#endif /* _ObjectList_H__ */
  • code/branches/FICN/src/orxonox/core/OrxonoxClass.h

    r496 r673  
    131131}
    132132
    133 #endif
     133#endif /* _OrxonoxClass_H__ */
  • code/branches/FICN/src/orxonox/core/SignalHandler.h

    r497 r673  
    7272
    7373#endif /* _SignalHandler_H__ */
    74 
  • code/branches/FICN/src/orxonox/hud/HUD.h

    r668 r673  
    2626 */
    2727
    28 #ifndef MODULE_HUD_H
    29 #define MODULE_HUD_H
     28#ifndef _HUD_H__
     29#define _HUD_H__
    3030
    3131#include <OgrePrerequisites.h>
     
    108108}
    109109
    110 #endif
     110#endif /* _HUD_H__ */
  • code/branches/FICN/src/orxonox/objects/Ambient.h

    r507 r673  
    1 #ifndef _OBJECT_AMBIENT_H__
    2 #define _OBJECT_AMBIENT_H__
     1#ifndef _Ambient_H__
     2#define _Ambient_H__
    33
    44#include "BaseObject.h"
     
    2222}
    2323
    24 #endif
     24#endif /* _Ambient_H__ */
  • code/branches/FICN/src/orxonox/objects/BaseObject.cc

    r637 r673  
    5959        if (xmlElem->Attribute("name"))
    6060        {
    61             this->setName(xmlElem->Attribute("mesh"));
     61            this->setName(xmlElem->Attribute("name"));
    6262        }
    6363    }
  • code/branches/FICN/src/orxonox/objects/BaseObject.h

    r637 r673  
    2424}
    2525
    26 #endif
     26#endif /* _BaseObject_H__ */
  • code/branches/FICN/src/orxonox/objects/BillboardSet.h

    r633 r673  
     1#ifndef _BillboardSet_H__
     2#define _BillboardSet_H__
     3
    14#include <string>
    25
    36#include "OgreBillboardSet.h"
    4 
    5 #ifndef _BillboardSet_H__
    6 #define _BillboardSet_H__
    77
    88namespace orxonox
     
    2727}
    2828
    29 #endif
     29#endif /* _BillboardSet_H__ */
  • code/branches/FICN/src/orxonox/objects/CMakeLists.txt

    r671 r673  
    99  Ambient.cc
    1010  Skybox.cc
    11   SceneNode.cc
     11#  SceneNode.cc
    1212  BaseEntity.cc
    13   Entity.cc
     13#  Entity.cc
    1414  Camera.cc
    1515#  SpaceshipSteeringObject.cc
     
    1919  NPC.cc
    2020  BillboardSet.cc
    21   Light.cc
     21#  Light.cc
    2222  Projectile.cc
    2323  weapon_system/AmmunitionDump.cc
  • code/branches/FICN/src/orxonox/objects/Camera.h

    r515 r673  
    1 #ifndef _OBJECT_CAMERA_H__
    2 #define _OBJECT_CAMERA_H__
     1#ifndef _Camera_H__
     2#define _Camera_H__
    33
    44#include "BaseObject.h"
     
    2222}
    2323
    24 #endif
     24#endif /* _Camera_H__ */
  • code/branches/FICN/src/orxonox/objects/Explosion.h

    r646 r673  
    2222}
    2323
    24 #endif
     24#endif /* _Explosion_H__ */
  • code/branches/FICN/src/orxonox/objects/Fighter.h

    r645 r673  
    9292}
    9393
    94 #endif
     94#endif /* _Fighter_H__ */
  • code/branches/FICN/src/orxonox/objects/Mesh.h

    r589 r673  
     1#ifndef _Mesh_H__
     2#define _Mesh_H__
     3
    14#include <string>
    25
    36#include "OgreEntity.h"
    4 
    5 #ifndef _Mesh_H__
    6 #define _Mesh_H__
    77
    88namespace orxonox
     
    2727}
    2828
    29 #endif
     29#endif /* _Mesh_H__ */
  • code/branches/FICN/src/orxonox/objects/Model.h

    r646 r673  
    2323}
    2424
    25 #endif
     25#endif /* _Model_H__ */
  • code/branches/FICN/src/orxonox/objects/NPC.h

    r627 r673  
    55 */
    66
    7 #ifndef MODULE_NPC_H
    8 #define MODULE_NPC_H
     7#ifndef _NPC_H__
     8#define _NPC_H__
    99
    1010// includes
     
    4343
    4444}
    45 #endif
     45#endif /* _NPC_H__ */
  • code/branches/FICN/src/orxonox/objects/Projectile.h

    r646 r673  
    2626}
    2727
    28 #endif
     28#endif /* _Projectile_H__ */
  • code/branches/FICN/src/orxonox/objects/Skybox.h

    r507 r673  
    1 #ifndef _OBJECT_SKYBOX_H__
    2 #define _OBJECT_SKYBOX_H__
     1#ifndef _Skybox_H__
     2#define _Skybox_H__
    33
    44#include "BaseObject.h"
     
    2222}
    2323
    24 #endif
     24#endif /* _Skybox_H__ */
  • code/branches/FICN/src/orxonox/objects/SpaceShip.h

    r661 r673  
    123123}
    124124
    125 #endif
     125#endif /* _SpaceShip_H__ */
  • code/branches/FICN/src/orxonox/objects/Tickable.h

    r670 r673  
    8181}
    8282
    83 #endif
     83#endif /* _Tickable_H__ */
  • code/branches/FICN/src/orxonox/objects/Timer.h

    r670 r673  
    192192}
    193193
    194 #endif
     194#endif /* _Timer_H__ */
  • code/branches/FICN/src/orxonox/objects/WorldEntity.h

    r647 r673  
    146146}
    147147
    148 #endif
     148#endif /* _WorldEntity_H__ */
  • code/branches/FICN/src/orxonox/objects/weapon_system/AmmunitionDump.h

    r668 r673  
    2727
    2828
    29 #ifndef AmmunitionDump_H
    30 #define AmmunitionDump_H
     29#ifndef _AmmunitionDump_H__
     30#define _AmmunitionDump_H__
    3131
    3232#include <OgrePrerequisites.h>
     
    6666}
    6767
    68 #endif /* AmmunitionDump_H */
     68#endif /* _AmmunitionDump_H__ */
  • code/branches/FICN/src/orxonox/objects/weapon_system/BarrelGun.h

    r668 r673  
    2727
    2828
    29 #ifndef BARREL_GUN_H
    30 #define BARREL_GUN_H
     29#ifndef _BarrelGun_H__
     30#define _BarrelGun_H__
    3131
    3232#include <OgrePrerequisites.h>
     
    6262}
    6363
    64 #endif /* BARREL_GUN_H */
     64#endif /* _BarrelGun_H__ */
  • code/branches/FICN/src/orxonox/objects/weapon_system/BaseWeapon.h

    r668 r673  
    2727
    2828
    29 #ifndef BASE_WEAPON_H
    30 #define BASE_WEAPON_H
     29#ifndef _BaseWeapon_H__
     30#define _BaseWeapon_H__
    3131
    3232#include <OgrePrerequisites.h>
     
    124124}
    125125
    126 #endif /* BASE_WEAPON_H */
     126#endif /* _BaseWeapon_H__ */
  • code/branches/FICN/src/orxonox/objects/weapon_system/Bullet.h

    r669 r673  
    2727
    2828
    29 #ifndef BULLET_H
    30 #define BULLET_H
     29#ifndef _Bullet_H__
     30#define _Bullet_H__
    3131
    3232#include <OgrePrerequisites.h>
     
    4949}
    5050
    51 #endif /* BULLET_H */
     51#endif /* _Bullet_H__ */
  • code/branches/FICN/src/orxonox/objects/weapon_system/BulletManager.h

    r668 r673  
    2727
    2828
    29 #ifndef BULLET_MANAGER_H
    30 #define BULLET_MANAGER_H
     29#ifndef _BulletManager_H__
     30#define _BulletManager_H__
    3131
    3232#include <OgrePrerequisites.h>
     
    6767}
    6868
    69 #endif /* BULLET_MANAGER_H */
     69#endif /* _BulletManager_H__ */
  • code/branches/FICN/src/orxonox/objects/weapon_system/WeaponStation.h

    r668 r673  
    2727
    2828
    29 #ifndef WEAPON_STATION_H
    30 #define WEAPON_STATION_H
     29#ifndef _WeaponStation_H__
     30#define _WeaponStation_H__
    3131
    3232#include <OgrePrerequisites.h>
     
    6363}
    6464
    65 #endif /* WEAPON_STATION_H */
     65#endif /* _WeaponStation_H__ */
  • code/branches/FICN/src/orxonox/particle/ParticleInterface.h

    r659 r673  
    1 #ifndef MODULE_ParticleInterface_H
    2 #define MODULE_ParticleInterface_H
     1#ifndef _ParticleInterface_H__
     2#define _ParticleInterface_H__
    33
    44// #include "ParticleInterface.h"
     
    6464
    6565}
    66 #endif
     66#endif /* _ParticleInterface_H__ */
Note: See TracChangeset for help on using the changeset viewer.