aboutsummaryrefslogtreecommitdiff
path: root/backends/modular-backend.h
diff options
context:
space:
mode:
authorMax Horn2011-06-06 23:25:37 +0200
committerMax Horn2011-06-07 14:57:56 +0200
commit04afdf7c7d2c70e4c31b65741d22545a8979367e (patch)
treeca9e2b2f9b669808bb2121251a5f7a1ec5e50608 /backends/modular-backend.h
parentb7be24b83515eb3266d1f1d20601dd7cf43d0755 (diff)
downloadscummvm-rg350-04afdf7c7d2c70e4c31b65741d22545a8979367e.tar.gz
scummvm-rg350-04afdf7c7d2c70e4c31b65741d22545a8979367e.tar.bz2
scummvm-rg350-04afdf7c7d2c70e4c31b65741d22545a8979367e.zip
BACKENDS: Move more 'manager slots' from ModularBackend to OSystem
Diffstat (limited to 'backends/modular-backend.h')
-rw-r--r--backends/modular-backend.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/backends/modular-backend.h b/backends/modular-backend.h
index 42bd0ed73a..d2c3ce2067 100644
--- a/backends/modular-backend.h
+++ b/backends/modular-backend.h
@@ -24,8 +24,6 @@
#define BACKENDS_MODULAR_BACKEND_H
#include "common/system.h"
-#include "common/timer.h"
-#include "common/savefile.h"
class GraphicsManager;
class MutexManager;
@@ -110,7 +108,6 @@ public:
/** @name Events and Time */
//@{
- virtual Common::TimerManager *getTimerManager();
virtual Common::HardwareKeySet *getHardwareKeySet() { return 0; }
//@}
@@ -135,8 +132,6 @@ public:
/** @name Miscellaneous */
//@{
- virtual Common::SaveFileManager *getSavefileManager();
- virtual FilesystemFactory *getFilesystemFactory();
virtual void quit();
virtual void displayMessageOnOSD(const char *msg);
@@ -146,9 +141,6 @@ protected:
/** @name Managers variables */
//@{
- FilesystemFactory *_fsFactory;
- Common::SaveFileManager *_savefileManager;
- Common::TimerManager *_timerManager;
MutexManager *_mutexManager;
GraphicsManager *_graphicsManager;
Audio::Mixer *_mixer;