diff options
| author | Alejandro Marzini | 2010-06-08 01:07:10 +0000 |
|---|---|---|
| committer | Alejandro Marzini | 2010-06-08 01:07:10 +0000 |
| commit | b5a8fdc974fd739193886b4581d5e5030896817a (patch) | |
| tree | a1cf14b04f673d806161816570d7be75ccb16d6e | |
| parent | 8f5e39079cde5b13ea53addf1544ca3f08250b2d (diff) | |
| download | scummvm-rg350-b5a8fdc974fd739193886b4581d5e5030896817a.tar.gz scummvm-rg350-b5a8fdc974fd739193886b4581d5e5030896817a.tar.bz2 scummvm-rg350-b5a8fdc974fd739193886b4581d5e5030896817a.zip | |
Made Mixer to subclass from Common::NonCopyable.
svn-id: r49497
| -rw-r--r-- | sound/mixer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/mixer.h b/sound/mixer.h index 65d5d18cc6..5c7d902337 100644 --- a/sound/mixer.h +++ b/sound/mixer.h @@ -28,6 +28,7 @@ #include "common/types.h" #include "common/mutex.h" +#include "common/noncopyable.h" #include "sound/timestamp.h" @@ -61,7 +62,7 @@ public: * The main audio mixer handles mixing of an arbitrary number of * audio streams (in the form of AudioStream instances). */ -class Mixer { +class Mixer : Common::NonCopyable { public: enum SoundType { kPlainSoundType = 0, |
