aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter.h
diff options
context:
space:
mode:
authorSven Hesse2011-02-04 15:53:44 +0000
committerSven Hesse2011-02-04 15:53:44 +0000
commit209f5bd77e9fa5f9b8d671b0f8a0e9a7e2530a25 (patch)
tree7ef63ef9c2ee51312d8c37ef5883a6881f43d787 /engines/gob/inter.h
parentc18035c07a3c582e78c61843ddd6c17d0a99c809 (diff)
downloadscummvm-rg350-209f5bd77e9fa5f9b8d671b0f8a0e9a7e2530a25.tar.gz
scummvm-rg350-209f5bd77e9fa5f9b8d671b0f8a0e9a7e2530a25.tar.bz2
scummvm-rg350-209f5bd77e9fa5f9b8d671b0f8a0e9a7e2530a25.zip
GOB: Move storeValue/storeString to class Inter
svn-id: r55766
Diffstat (limited to 'engines/gob/inter.h')
-rw-r--r--engines/gob/inter.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/gob/inter.h b/engines/gob/inter.h
index 07e873c703..6a403ce928 100644
--- a/engines/gob/inter.h
+++ b/engines/gob/inter.h
@@ -156,6 +156,12 @@ protected:
void o_drawNOP() {}
void o_funcNOP(OpFuncParams &params) {}
void o_gobNOP(OpGobParams &params) {}
+
+ void storeValue(uint16 index, uint16 type, uint32 value);
+ void storeValue(uint32 value);
+
+ void storeString(uint16 index, uint16 type, const char *value);
+ void storeString(const char *value);
};
class Inter_v1 : public Inter {
@@ -630,12 +636,6 @@ private:
INIConfig _inis;
Databases _databases;
- void storeValue(uint16 index, uint16 type, uint32 value);
- void storeValue(uint32 value);
-
- void storeString(uint16 index, uint16 type, const char *value);
- void storeString(const char *value);
-
Common::String findFile(const Common::String &mask);
};