aboutsummaryrefslogtreecommitdiff
path: root/scumm/instrument.h
diff options
context:
space:
mode:
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