diff options
author | Max Horn | 2007-03-17 10:36:14 +0000 |
---|---|---|
committer | Max Horn | 2007-03-17 10:36:14 +0000 |
commit | 97514214349ed236c54fa6a91a0937b9c6073aab (patch) | |
tree | 0d1034f07270c91d629bdd5b62ff81f1bb2a20e8 /common/timer.h | |
parent | c1f4dbda7794fbc174668def400cbfe315f71f51 (diff) | |
download | scummvm-rg350-97514214349ed236c54fa6a91a0937b9c6073aab.tar.gz scummvm-rg350-97514214349ed236c54fa6a91a0937b9c6073aab.tar.bz2 scummvm-rg350-97514214349ed236c54fa6a91a0937b9c6073aab.zip |
Added class NonCopyable, and made various things derive from it
svn-id: r26163
Diffstat (limited to 'common/timer.h')
-rw-r--r-- | common/timer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/timer.h b/common/timer.h index 7f660e7742..30a733aaee 100644 --- a/common/timer.h +++ b/common/timer.h @@ -23,10 +23,11 @@ #define COMMON_TIMER_H #include "common/scummsys.h" +#include "common/noncopyable.h" namespace Common { -class TimerManager { +class TimerManager : NonCopyable { public: typedef void (*TimerProc)(void *refCon); |