aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/parse.h
diff options
context:
space:
mode:
authorMax Horn2009-04-07 10:41:23 +0000
committerMax Horn2009-04-07 10:41:23 +0000
commit7444665152c24f0ad473baf8a4db4f1f9130e59b (patch)
tree2e69149da70d09a9715f457e111e179417f57c17 /engines/gob/parse.h
parent8151a1d878f73280bb9497a88005e3449ec76ccb (diff)
downloadscummvm-rg350-7444665152c24f0ad473baf8a4db4f1f9130e59b.tar.gz
scummvm-rg350-7444665152c24f0ad473baf8a4db4f1f9130e59b.tar.bz2
scummvm-rg350-7444665152c24f0ad473baf8a4db4f1f9130e59b.zip
GOB: Gave some numerical constants a name. This codebase is a bit of a mess ;) (tons of duplicate code, unnamed constants, etc.)
svn-id: r39882
Diffstat (limited to 'engines/gob/parse.h')
-rw-r--r--engines/gob/parse.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/engines/gob/parse.h b/engines/gob/parse.h
index e181b6441e..738c956796 100644
--- a/engines/gob/parse.h
+++ b/engines/gob/parse.h
@@ -28,6 +28,16 @@
namespace Gob {
+enum {
+ OP_ADD = 2,
+ OP_SUB = 3,
+ OP_BITOR = 4,
+ OP_MUL = 5,
+ OP_DIV = 6,
+ OP_MOD = 7,
+ OP_BITAND = 8
+};
+
class Parse {
public:
void skipExpr(char stopToken);