diff options
author | Max Horn | 2010-06-15 12:09:03 +0000 |
---|---|---|
committer | Max Horn | 2010-06-15 12:09:03 +0000 |
commit | e32f3d5a4344953d9fdec6b9bd1627a4eb8de156 (patch) | |
tree | c814a05fbfea3d3988cc5f7cdfeb24c376f8601d /engines | |
parent | 69bfbdfa0406cd12c2275d481e296cf4f1e3faad (diff) | |
download | scummvm-rg350-e32f3d5a4344953d9fdec6b9bd1627a4eb8de156.tar.gz scummvm-rg350-e32f3d5a4344953d9fdec6b9bd1627a4eb8de156.tar.bz2 scummvm-rg350-e32f3d5a4344953d9fdec6b9bd1627a4eb8de156.zip |
SCI: cleanup
svn-id: r49808
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/resource.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/sci/resource.h b/engines/sci/resource.h index e94eaf4d57..822d1d31f4 100644 --- a/engines/sci/resource.h +++ b/engines/sci/resource.h @@ -34,10 +34,7 @@ #include "sci/sci.h" namespace Common { -class ReadStream; -class WriteStream; class File; -class FSNode; } namespace Sci { @@ -192,6 +189,10 @@ public: byte *_header; uint32 _headerSize; + /** + * Write the resource to the specified stream. + * This method is used only by the "dump" debugger command. + */ void writeToStream(Common::WriteStream *stream) const; uint32 getAudioCompressionType(); |