aboutsummaryrefslogtreecommitdiff
path: root/backends/base-backend.h
diff options
context:
space:
mode:
authorMax Horn2010-11-08 22:53:36 +0000
committerMax Horn2010-11-08 22:53:36 +0000
commit82e473bc3b1498325bad28d804e4314f0c3a528c (patch)
treef186d8b9eeb665a81897deca3a3fadcf74007c16 /backends/base-backend.h
parent4242229c91c356bdd90c66ce8c0642488a1b4bf5 (diff)
parent74a53df11b51fa4956745c086b2e6351b8383568 (diff)
downloadscummvm-rg350-82e473bc3b1498325bad28d804e4314f0c3a528c.tar.gz
scummvm-rg350-82e473bc3b1498325bad28d804e4314f0c3a528c.tar.bz2
scummvm-rg350-82e473bc3b1498325bad28d804e4314f0c3a528c.zip
BACKENDS: Partial merge of gsoc2010-opengl: Audio CD changes only
This commit contains the AudioCDManager changes from the gsoc2010-opengl branch. The other changes in that branch are restricted to the backends directory only (plus configure). The Nintendo DS and Dreamcast ports still need to be ported over to the new Audio CD system, but that should be fairly easy to do. svn-id: r54147
Diffstat (limited to 'backends/base-backend.h')
-rw-r--r--backends/base-backend.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/backends/base-backend.h b/backends/base-backend.h
index 3fcca9c3b7..de94d85523 100644
--- a/backends/base-backend.h
+++ b/backends/base-backend.h
@@ -31,12 +31,22 @@
class BaseBackend : public OSystem, Common::EventSource {
public:
+ BaseBackend();
+ ~BaseBackend();
+
virtual Common::EventManager *getEventManager();
virtual void displayMessageOnOSD(const char *msg);
virtual void fillScreen(uint32 col);
virtual Common::SeekableReadStream *createConfigReadStream();
virtual Common::WriteStream *createConfigWriteStream();
+
+ virtual AudioCDManager *getAudioCDManager();
+
+ virtual void resetGraphicsScale();
+
+protected:
+ AudioCDManager *_audiocdManager;
};