aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2011-01-10 22:20:51 +0000
committerJohannes Schickel2011-01-10 22:20:51 +0000
commit645ba4c379b07bf2296eac66a0de31ae55ebb2b0 (patch)
tree3b3a9144bdae142876a282beac18676341de9f39
parent1abb955a975535b804f648383087a4b168afc003 (diff)
downloadscummvm-rg350-645ba4c379b07bf2296eac66a0de31ae55ebb2b0.tar.gz
scummvm-rg350-645ba4c379b07bf2296eac66a0de31ae55ebb2b0.tar.bz2
scummvm-rg350-645ba4c379b07bf2296eac66a0de31ae55ebb2b0.zip
SOUND: Get rid of unused forward declarations in mixer.h.
svn-id: r55197
-rw-r--r--engines/sci/sound/audio.h4
-rw-r--r--engines/tucker/tucker.h4
-rw-r--r--sound/mixer.h2
3 files changed, 8 insertions, 2 deletions
diff --git a/engines/sci/sound/audio.h b/engines/sci/sound/audio.h
index 0f075f1b0f..1ad9acc58e 100644
--- a/engines/sci/sound/audio.h
+++ b/engines/sci/sound/audio.h
@@ -30,6 +30,10 @@
#include "sci/engine/vm_types.h"
#include "sound/mixer.h"
+namespace Audio {
+class RewindableAudioStream;
+} // End of namespace Audio
+
namespace Sci {
enum AudioCommands {
diff --git a/engines/tucker/tucker.h b/engines/tucker/tucker.h
index a7d7f1cdd4..1932b18174 100644
--- a/engines/tucker/tucker.h
+++ b/engines/tucker/tucker.h
@@ -41,6 +41,10 @@
#include "tucker/console.h"
+namespace Audio {
+class RewindableAudioStream;
+} // End of namespace Audio
+
/**
* This is the namespace of the Tucker engine.
*
diff --git a/sound/mixer.h b/sound/mixer.h
index 5c7d902337..b2accc550d 100644
--- a/sound/mixer.h
+++ b/sound/mixer.h
@@ -38,8 +38,6 @@ class OSystem;
namespace Audio {
class AudioStream;
-class RewindableAudioStream;
-class SeekableAudioStream;
class Channel;
class Mixer;
class MixerImpl;