aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/string.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/titanic/support/string.h')
-rw-r--r--engines/titanic/support/string.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/titanic/support/string.h b/engines/titanic/support/string.h
index 9550ce88a7..487c138358 100644
--- a/engines/titanic/support/string.h
+++ b/engines/titanic/support/string.h
@@ -49,6 +49,11 @@ public:
explicit CString(char c) : Common::String(c) {}
explicit CString(int val);
+ bool operator==(const CString &x) const;
+ bool operator==(const char *x) const;
+ bool operator!=(const CString &x) const;
+ bool operator!=(const char *x) const;
+
/**
* Returns the left n characters of the string
*/