aboutsummaryrefslogtreecommitdiff
path: root/sound/voc.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/voc.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/voc.h')
-rw-r--r--sound/voc.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/sound/voc.h b/sound/voc.h
index 59ddc305ec..d53fcedcdf 100644
--- a/sound/voc.h
+++ b/sound/voc.h
@@ -27,9 +27,13 @@
#include "common/stdafx.h"
#include "common/scummsys.h"
-class AudioStream;
namespace Common { class ReadStream; }
+namespace Audio {
+
+class AudioStream;
+
+
#if !defined(__GNUC__)
#pragma START_PACK_STRUCTS
#endif
@@ -81,4 +85,6 @@ extern byte *loadVOCFromStream(Common::ReadStream &stream, int &size, int &rate)
*/
AudioStream *makeVOCStream(Common::ReadStream &stream);
+} // End of namespace Audio
+
#endif