aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2008-08-04 11:38:25 +0000
committerMax Horn2008-08-04 11:38:25 +0000
commit5f4c9f913f60d1098cbe527a9a4acabd39c5c23b (patch)
treea1d332c19b37268527bf4f9e1402ec904e2440ba /common
parentc92ee34e45f7e1a38ab3ab3463891f4efe96be79 (diff)
downloadscummvm-rg350-5f4c9f913f60d1098cbe527a9a4acabd39c5c23b.tar.gz
scummvm-rg350-5f4c9f913f60d1098cbe527a9a4acabd39c5c23b.tar.bz2
scummvm-rg350-5f4c9f913f60d1098cbe527a9a4acabd39c5c23b.zip
Turned InSaveFile & OutSaveFile into simple typedefs
svn-id: r33606
Diffstat (limited to 'common')
-rw-r--r--common/savefile.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/common/savefile.h b/common/savefile.h
index aa91b5859d..d44f946d48 100644
--- a/common/savefile.h
+++ b/common/savefile.h
@@ -39,16 +39,14 @@ namespace Common {
* That typically means "save games", but also includes things like the
* IQ points in Indy3.
*/
-//typedef SeekableReadStream InSaveFile;
-class InSaveFile : public SeekableReadStream {};
+typedef SeekableReadStream InSaveFile;
/**
* A class which allows game engines to save game state data.
* That typically means "save games", but also includes things like the
* IQ points in Indy3.
*/
-//typedef WriteStream OutSaveFile;
-class OutSaveFile : public WriteStream {};
+typedef WriteStream OutSaveFile;
/**