Changeset 5774 for code/trunk/src/libraries/core/Core.h
- Timestamp:
- Sep 23, 2009, 11:31:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/Core.h
r5738 r5774 85 85 static void resetLanguage(); 86 86 87 static void tsetExternalDataPath(const std::string& path);88 87 //! Returns the path to the data files as boost::filesystem::path 89 88 static const boost::filesystem::path& getDataPath(); 90 //! Returns the path to the external data files as boost::filesystem::path91 static const boost::filesystem::path& getExternalDataPath();92 89 //! Returns the path to the config files as boost::filesystem::path 93 90 static const boost::filesystem::path& getConfigPath(); … … 98 95 //! Returns the path to the data files as std::string 99 96 static std::string getDataPathString(); 100 //! Returns the path to the external data files as std::string101 static std::string getExternalDataPathString();102 97 //! Returns the path to the config files as std::string 103 98 static std::string getConfigPathString(); … … 115 110 void postUpdate(const Clock& time); 116 111 117 void loadGraphics();118 void unloadGraphics();119 120 112 void setFixedPaths(); 121 113 void setConfigurablePaths(); … … 126 118 scoped_ptr<SignalHandler> signalHandler_; 127 119 SimpleScopeGuard identifierDestroyer_; 128 SimpleScopeGuard consoleCommandDestroyer_;129 120 scoped_ptr<ConfigFileManager> configFileManager_; 130 121 scoped_ptr<Language> languageInstance_; 131 122 scoped_ptr<CoreConfiguration> configuration_; 132 scoped_ptr<TclBind> tclBind_;133 scoped_ptr<TclThreadManager> tclThreadManager_;134 scoped_ptr<Shell> shell_;135 // graphical136 scoped_ptr<GraphicsManager> graphicsManager_; //!< Interface to OGRE137 scoped_ptr<InputManager> inputManager_; //!< Interface to OIS138 scoped_ptr<GUIManager> guiManager_; //!< Interface to GUI139 123 140 124 bool bDevRun_; //!< True for runs in the build directory (not installed) 141 bool bGraphicsLoaded_;142 125 143 126 static Core* singletonPtr_s;
Note: See TracChangeset
for help on using the changeset viewer.