Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 24, 2009, 11:32:39 AM (15 years ago)
Author:
rgrieder
Message:

Applied changes to the real sandbox this time.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sandbox/src/libraries/core/Core.h

    r5738 r5782  
    8585            static void  resetLanguage();
    8686
    87             static void tsetExternalDataPath(const std::string& path);
    8887            //! Returns the path to the data files as boost::filesystem::path
    8988            static const boost::filesystem::path& getDataPath();
    90             //! Returns the path to the external data files as boost::filesystem::path
    91             static const boost::filesystem::path& getExternalDataPath();
    9289            //! Returns the path to the config files as boost::filesystem::path
    9390            static const boost::filesystem::path& getConfigPath();
     
    9895            //! Returns the path to the data files as std::string
    9996            static std::string getDataPathString();
    100             //! Returns the path to the external data files as std::string
    101             static std::string getExternalDataPathString();
    10297            //! Returns the path to the config files as std::string
    10398            static std::string getConfigPathString();
     
    115110            void postUpdate(const Clock& time);
    116111
    117             void loadGraphics();
    118             void unloadGraphics();
    119 
    120112            void setFixedPaths();
    121113            void setConfigurablePaths();
     
    126118            scoped_ptr<SignalHandler>     signalHandler_;
    127119            SimpleScopeGuard              identifierDestroyer_;
    128             SimpleScopeGuard              consoleCommandDestroyer_;
    129120            scoped_ptr<ConfigFileManager> configFileManager_;
    130121            scoped_ptr<Language>          languageInstance_;
    131122            scoped_ptr<CoreConfiguration> configuration_;
    132             scoped_ptr<TclBind>           tclBind_;
    133             scoped_ptr<TclThreadManager>  tclThreadManager_;
    134             scoped_ptr<Shell>             shell_;
    135             // graphical
    136             scoped_ptr<GraphicsManager>   graphicsManager_;     //!< Interface to OGRE
    137             scoped_ptr<InputManager>      inputManager_;        //!< Interface to OIS
    138             scoped_ptr<GUIManager>        guiManager_;          //!< Interface to GUI
    139123
    140124            bool                          bDevRun_;             //!< True for runs in the build directory (not installed)
    141             bool                          bGraphicsLoaded_;
    142125
    143126            static Core* singletonPtr_s;
Note: See TracChangeset for help on using the changeset viewer.