diff options
Diffstat (limited to 'common/system.h')
-rw-r--r-- | common/system.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/common/system.h b/common/system.h index 7caf73a8a2..405d6a90a8 100644 --- a/common/system.h +++ b/common/system.h @@ -190,11 +190,23 @@ protected: */ FilesystemFactory *_fsFactory; +private: + /** + * Indicate if initBackend() has been called. + */ + bool _backendInitialized; + //@} public: /** + * + * Destoy this OSystem instance. + */ + void destroy(); + + /** * The following method is called once, from main.cpp, after all * config data (including command line params etc.) are fully loaded. * @@ -205,6 +217,13 @@ public: virtual void initBackend(); /** + * Return false if initBackend() has not yet been called and true otherwise. + * Some functionalities such as mutexes cannot be used until the backend + * is initialized. + */ + bool backendInitialized() const { return _backendInitialized; } + + /** * Allows the backend to perform engine specific init. * Called just before the engine is run. */ |