aboutsummaryrefslogtreecommitdiff
path: root/sound/adpcm.h
diff options
context:
space:
mode:
authorMax Horn2006-04-29 22:33:31 +0000
committerMax Horn2006-04-29 22:33:31 +0000
commit27307acd7c6f9f9083bdcad38ba54f18d4f080b7 (patch)
treefd7360382a19b07dcca9b711080b3f6c8f64fd38 /sound/adpcm.h
parentac0ae13bee890b78442788abe6b87e514c9928a0 (diff)
downloadscummvm-rg350-27307acd7c6f9f9083bdcad38ba54f18d4f080b7.tar.gz
scummvm-rg350-27307acd7c6f9f9083bdcad38ba54f18d4f080b7.tar.bz2
scummvm-rg350-27307acd7c6f9f9083bdcad38ba54f18d4f080b7.zip
Moved the AudioCDManager as well as class AudioStream and its (standard) subclasses to namespace Audio
svn-id: r22231
Diffstat (limited to 'sound/adpcm.h')
-rw-r--r--sound/adpcm.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/adpcm.h b/sound/adpcm.h
index 6db3acae00..deab1f8e1c 100644
--- a/sound/adpcm.h
+++ b/sound/adpcm.h
@@ -27,6 +27,9 @@
#include "common/scummsys.h"
#include "common/stream.h"
+
+namespace Audio {
+
class AudioStream;
enum typesADPCM {
@@ -37,5 +40,6 @@ enum typesADPCM {
AudioStream *makeADPCMStream(Common::SeekableReadStream *stream, uint32 size, typesADPCM type, int rate = 22050, int channels = 2, uint32 blockAlign = 0);
+} // End of namespace Audio
#endif