aboutsummaryrefslogtreecommitdiff
path: root/common/savefile.h
diff options
context:
space:
mode:
authorMax Horn2007-03-17 10:36:14 +0000
committerMax Horn2007-03-17 10:36:14 +0000
commit97514214349ed236c54fa6a91a0937b9c6073aab (patch)
tree0d1034f07270c91d629bdd5b62ff81f1bb2a20e8 /common/savefile.h
parentc1f4dbda7794fbc174668def400cbfe315f71f51 (diff)
downloadscummvm-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.h3
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() {}