Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 28, 2007, 11:33:10 PM (18 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/Orxonox.h

    r708 r715  
    88#define _Orxonox_H__
    99
     10#include <string>
     11
    1012#include <OgrePrerequisites.h>
    1113#include <OIS/OISPrereqs.h>
     
    1315#include "OrxonoxPrereqs.h"
    1416#include "loader/LoaderPrereqs.h"
    15 
    16 #include "misc/String.h"
    1717#include "GraphicsEngine.h"
    1818
     
    3232  {
    3333    public:
    34       void init(int argc, char **argv, String path);
     34      void init(int argc, char **argv, std::string path);
    3535      void start();
    3636      // not sure if this should be private
     
    4848      virtual ~Orxonox();
    4949      // init functions
    50       void serverInit(String path);
    51       void clientInit(String path);
    52       void standaloneInit(String path);
     50      void serverInit(std::string path);
     51      void clientInit(std::string path);
     52      void standaloneInit(std::string path);
    5353      // run functions
    54       void playableServer(String path);
     54      void playableServer(std::string path);
    5555      void standalone();
    5656      void defineResources();
     
    6666    private:
    6767      GraphicsEngine*       ogre_;      //!< our dearest graphics engine <3
    68       String           dataPath_;  //!< path to data
     68      std::string           dataPath_;  //!< path to data
    6969      loader::LevelLoader*  loader_;    //!< level loader builds the scene
    7070      audio::AudioManager*  auMan_;     //!< audio manager
     
    7979      // this is used to identify the mode (server/client/...) we're in
    8080      gameMode              mode_;
    81       String           serverIp_;
     81      std::string           serverIp_;
    8282  };
    8383}
Note: See TracChangeset for help on using the changeset viewer.