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/savefile.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/savefile.h')
-rw-r--r-- | common/savefile.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/savefile.h b/common/savefile.h index 4dbb46c5eb..9d781b92f8 100644 --- a/common/savefile.h +++ b/common/savefile.h @@ -24,6 +24,7 @@ #define COMMON_SAVEFILE_H #include "common/stdafx.h" +#include "common/noncopyable.h" #include "common/scummsys.h" #include "common/stream.h" @@ -70,7 +71,7 @@ public: * it is effectively used as such, with OSystem::getSavefileManager * returning the single SaveFileManager instances to be used. */ -class SaveFileManager { +class SaveFileManager : NonCopyable { public: virtual ~SaveFileManager() {} |