aboutsummaryrefslogtreecommitdiff
path: root/common/system.h
diff options
context:
space:
mode:
authorMax Horn2006-10-21 12:03:43 +0000
committerMax Horn2006-10-21 12:03:43 +0000
commitf95f5ed13356233b1f1976c6a793b6e104373a4d (patch)
tree299fd488a8742bcc0245ad3ae3c5e112f6742645 /common/system.h
parent772affc7dbb75faad85b69c00b381d12340f809d (diff)
downloadscummvm-rg350-f95f5ed13356233b1f1976c6a793b6e104373a4d.tar.gz
scummvm-rg350-f95f5ed13356233b1f1976c6a793b6e104373a4d.tar.bz2
scummvm-rg350-f95f5ed13356233b1f1976c6a793b6e104373a4d.zip
Added OSystem::getTimerManager and OSystem::getMixer methods (wip)
svn-id: r24405
Diffstat (limited to 'common/system.h')
-rw-r--r--common/system.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/common/system.h b/common/system.h
index 9508520cc1..1682426ab0 100644
--- a/common/system.h
+++ b/common/system.h
@@ -28,12 +28,17 @@
#include "common/mutex.h"
#include "common/rect.h"
+namespace Audio {
+ class Mixer;
+}
+
namespace Graphics {
struct Surface;
}
namespace Common {
class SaveFileManager;
+ class TimerManager;
}
/**
@@ -970,6 +975,13 @@ public:
/** Savefile management. */
virtual Common::SaveFileManager *getSavefileManager();
+
+ /** TODO */
+ virtual Audio::Mixer *getMixer();
+
+ /** TODO */
+ virtual Common::TimerManager *getTimerManager();
+
//@}
};