Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 10, 2009, 10:58:53 PM (16 years ago)
Author:
rgrieder
Message:

Header file section clean up in orxonox/overlays (without stats). Also reduced dependencies as much as possible.

Location:
code/branches/pch/src/orxonox/overlays/map
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pch/src/orxonox/overlays/map/Map.cc

    r3110 r3144  
    2424 *
    2525 */
     26
    2627#include "Map.h"
    2728
    2829#include <string>
    29 #include "util/String.h"
     30
     31#include <OgreBorderPanelOverlayElement.h>
     32#include <OgreCamera.h>
     33#include <OgreHardwarePixelBuffer.h>
     34#include <OgreMaterialManager.h>
     35#include <OgreMovablePlane.h>
     36#include <OgreOverlay.h>
     37#include <OgreOverlayContainer.h>
     38#include <OgreOverlayManager.h>
     39#include <OgrePass.h>
     40#include <OgreRenderTexture.h>
     41#include <OgreResourceGroupManager.h>
     42#include <OgreRoot.h>
    3043#include <OgreSceneManager.h>
    3144#include <OgreSceneNode.h>
    32 #include <OgreEntity.h>
    33 #include <OgreNode.h>
    34 
    35 
    36 #include <OgreRenderWindow.h>
    37 #include <OgreRenderTexture.h>
     45#include <OgreTechnique.h>
    3846#include <OgreTexture.h>
     47#include <OgreTextureManager.h>
    3948#include <OgreViewport.h>
    4049
    41 #include <OgreMaterialManager.h>
    42 #include <OgreRoot.h>
    43 #include <OgreHardwarePixelBuffer.h>
    44 #include "objects/worldentities/ControllableEntity.h"
    45 #include "objects/worldentities/CameraPosition.h"
    46 
    47 #include <OgreOverlay.h>
    48 #include <OgreMovablePlane.h>
    49 #include <OgreOverlayElement.h>
    50 #include <OgreOverlayManager.h>
    51 #include <OgreOverlayContainer.h>
     50#include "core/ConsoleCommand.h"
    5251#include "core/CoreIncludes.h"
    53 #include "core/ConfigValueIncludes.h"
    54 #include "core/ConsoleCommand.h"
     52#include "core/Iterator.h"
     53#include "core/XMLPort.h"
    5554#include "objects/Scene.h"
    5655#include "objects/RadarViewable.h"
    5756#include "objects/controllers/HumanController.h"
     57#include "objects/worldentities/CameraPosition.h"
     58#include "objects/worldentities/ControllableEntity.h"
    5859
    5960 namespace orxonox
  • code/branches/pch/src/orxonox/overlays/map/Map.h

    r3101 r3144  
    2525 */
    2626
    27 #ifndef _MAP_H__
    28 #define _MAP_H__
     27#ifndef _Map_H__
     28#define _Map_H__
     29
     30#include "OrxonoxPrereqs.h"
    2931
    3032#include <string>
    31 #include "OrxonoxPrereqs.h"
    32 #include <OgrePrerequisites.h>
    33 #include <OgreSceneManager.h>
    34 #include <OgreSceneNode.h>
    35 #include <OgreEntity.h>
    36 #include <OgreOverlay.h>
    37 #include <OgreOverlayElement.h>
    38 #include <OgreOverlayManager.h>
    39 #include <OgreOverlayContainer.h>
    40 #include <OgreMovablePlane.h>
     33#include <OgreMaterial.h>
    4134
    42 #include <OgreBorderPanelOverlayElement.h>
    43 #include <OgreTextAreaOverlayElement.h>
    44 
     35#include "util/UtilPrereqs.h"
     36#include "objects/Tickable.h"
    4537#include "overlays/OrxonoxOverlay.h"
    46 #include "objects/Tickable.h"
    47 
    48 
    4938
    5039namespace orxonox
     
    5544    public: // functions
    5645        Map(BaseObject* creator);
    57         ~Map();
     46        virtual ~Map();
    5847
    5948        virtual void XMLPort(Element& xmlElement, XMLPort::Mode mode);
     
    126115}
    127116
    128 #endif /* _MAP_H__ */
     117#endif /* _Map_H__ */
Note: See TracChangeset for help on using the changeset viewer.