Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 28, 2007, 11:33:10 PM (16 years ago)
Author:
rgrieder
Message:
  • the master has spoken…
  • misc/String.h is not anymore..
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/src/orxonox/GraphicsEngine.h

    r708 r715  
    88#define _GraphicsEngine_H__
    99
     10#include <string>
     11
    1012#include <OgreRoot.h>
    1113#include <OgreSceneManager.h>
    12 
    13 #include "misc/String.h"
    1414
    1515
     
    2222    public:
    2323      GraphicsEngine();
    24       inline void setConfigPath(String path) { this->configPath_ = path; };
     24      inline void setConfigPath(std::string path) { this->configPath_ = path; };
    2525      // find a better way for this
    2626      inline Ogre::Root* getRoot() { return root_; };
    2727      void setup();
    2828      bool load();
    29       void loadRessourceLocations(String path);
     29      void loadRessourceLocations(std::string path);
    3030      Ogre::SceneManager* getSceneManager();
    3131      void startRender();
     
    3434    private:
    3535      Ogre::Root*         root_;        //!< Ogre's root
    36       String         configPath_;  //!< path to config file
    37       String         dataPath_;    //!< path to data file
     36      std::string         configPath_;  //!< path to config file
     37      std::string         dataPath_;    //!< path to data file
    3838      Ogre::SceneManager* scene_;       //!< scene manager of the game
    3939
Note: See TracChangeset for help on using the changeset viewer.