aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/totfile.h
diff options
context:
space:
mode:
authorSven Hesse2009-06-23 23:55:35 +0000
committerSven Hesse2009-06-23 23:55:35 +0000
commit82f1ebcafed7e565ac4dce610f7bc098f45ee67d (patch)
treee90eb9b36ffdc1f699bafb3b52bf2793892f16f1 /engines/gob/totfile.h
parent04d4ce4a8be24bde70933c7e4a1dc41f374a75ad (diff)
downloadscummvm-rg350-82f1ebcafed7e565ac4dce610f7bc098f45ee67d.tar.gz
scummvm-rg350-82f1ebcafed7e565ac4dce610f7bc098f45ee67d.tar.bz2
scummvm-rg350-82f1ebcafed7e565ac4dce610f7bc098f45ee67d.zip
Putting TOT filename generation and LOM checking into TOTFile
svn-id: r41822
Diffstat (limited to 'engines/gob/totfile.h')
-rw-r--r--engines/gob/totfile.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/gob/totfile.h b/engines/gob/totfile.h
index a79cb715cc..3a82706a7d 100644
--- a/engines/gob/totfile.h
+++ b/engines/gob/totfile.h
@@ -26,8 +26,9 @@
#ifndef GOB_TOTFILE_H
#define GOB_TOTFILE_H
+#include "common/str.h"
+
namespace Common {
- class String;
class SeekableReadStream;
}
@@ -62,6 +63,8 @@ public:
Common::SeekableReadStream *getStream() const;
bool getProperties(Properties &props) const;
+ static Common::String createFileName(const Common::String &base, bool &isLOM);
+
private:
GobEngine *_vm;