aboutsummaryrefslogtreecommitdiff
path: root/scumm/instrument.h
diff options
context:
space:
mode:
authorMax Horn2003-10-03 18:33:57 +0000
committerMax Horn2003-10-03 18:33:57 +0000
commitd7660a2662be298dad3cf9b320137dac8744d456 (patch)
treec80ddb2c4fb1917660db0010bb0b3d6ed8d57b24 /scumm/instrument.h
parenteabeb62e20a8ed2117e19ca3bf04bb1d33637b79 (diff)
downloadscummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.tar.gz
scummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.tar.bz2
scummvm-rg350-d7660a2662be298dad3cf9b320137dac8744d456.zip
introduced namespace Scumm; made #include statements use scumm/ prefix explicitly
svn-id: r10571
Diffstat (limited to 'scumm/instrument.h')
-rw-r--r--scumm/instrument.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/scumm/instrument.h b/scumm/instrument.h
index 8116af1d25..baaf1c03f6 100644
--- a/scumm/instrument.h
+++ b/scumm/instrument.h
@@ -25,8 +25,11 @@
#include "stdafx.h"
#include "common/scummsys.h"
-class Serializer;
class MidiChannel;
+
+namespace Scumm {
+
+class Serializer;
class Instrument;
class InstrumentInternal {
@@ -68,4 +71,6 @@ public:
void send (MidiChannel *mc) { if (_instrument) _instrument->send (mc); }
};
+} // End of namespace Scumm
+
#endif