aboutsummaryrefslogtreecommitdiff
path: root/common/fs.h
diff options
context:
space:
mode:
authorMax Horn2008-09-06 20:49:48 +0000
committerMax Horn2008-09-06 20:49:48 +0000
commit1cecbebc4905dcfdf4c60ff03735b9073df9e3e3 (patch)
treec5cc270d16b68d1998561e66741474335eceb84c /common/fs.h
parent0378201ec7c4ba240030db44d8aaebf023aa6e88 (diff)
downloadscummvm-rg350-1cecbebc4905dcfdf4c60ff03735b9073df9e3e3.tar.gz
scummvm-rg350-1cecbebc4905dcfdf4c60ff03735b9073df9e3e3.tar.bz2
scummvm-rg350-1cecbebc4905dcfdf4c60ff03735b9073df9e3e3.zip
Switched class File & DumpFile to use StdioStream internally
svn-id: r34391
Diffstat (limited to 'common/fs.h')
-rw-r--r--common/fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/fs.h b/common/fs.h
index f29b714272..9163dbadce 100644
--- a/common/fs.h
+++ b/common/fs.h
@@ -229,7 +229,7 @@ public:
*
* @return pointer to the stream object, 0 in case of a failure
*/
- virtual Common::SeekableReadStream *openForReading();
+ virtual Common::SeekableReadStream *openForReading() const;
/**
* Creates a WriteStream instance corresponding to the file
@@ -238,7 +238,7 @@ public:
*
* @return pointer to the stream object, 0 in case of a failure
*/
- virtual Common::WriteStream *openForWriting();
+ virtual Common::WriteStream *openForWriting() const;
};
} // End of namespace Common