aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/base/scriptables/script_value.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-29 15:30:44 +0200
committerEinar Johan Trøan Sømåen2012-07-29 15:30:44 +0200
commitaa3467ddaa4b1df72398a1545c9d8b1c89dad6ad (patch)
treefebfbf4d0962bf64f6639039babb2bbc101e0c09 /engines/wintermute/base/scriptables/script_value.h
parent1f5288d8c17bb65d623e96ab66833ba548c26e70 (diff)
downloadscummvm-rg350-aa3467ddaa4b1df72398a1545c9d8b1c89dad6ad.tar.gz
scummvm-rg350-aa3467ddaa4b1df72398a1545c9d8b1c89dad6ad.tar.bz2
scummvm-rg350-aa3467ddaa4b1df72398a1545c9d8b1c89dad6ad.zip
WINTERMUTE: Remove the debugger.
Diffstat (limited to 'engines/wintermute/base/scriptables/script_value.h')
-rw-r--r--engines/wintermute/base/scriptables/script_value.h30
1 files changed, 1 insertions, 29 deletions
diff --git a/engines/wintermute/base/scriptables/script_value.h b/engines/wintermute/base/scriptables/script_value.h
index 069c36bd47..8fced06972 100644
--- a/engines/wintermute/base/scriptables/script_value.h
+++ b/engines/wintermute/base/scriptables/script_value.h
@@ -33,7 +33,6 @@
#include "engines/wintermute/base/base.h"
#include "engines/wintermute/persistent.h"
#include "engines/wintermute/dcscript.h" // Added by ClassView
-#include "engines/wintermute/wme_debugger.h"
#include "common/str.h"
namespace WinterMute {
@@ -41,10 +40,8 @@ namespace WinterMute {
class ScScript;
class BaseScriptable;
-class ScValue : public BaseClass, public IWmeDebugProp {
+class ScValue : public BaseClass {
public:
- bool dbgSendVariables(IWmeDebugClient *client, EWmeDebuggerVariableType type, ScScript *script, unsigned int scopeID);
-
static int compare(ScValue *val1, ScValue *val2);
static int compareStrict(ScValue *val1, ScValue *val2);
TValType getTypeTolerant();
@@ -109,31 +106,6 @@ public:
bool setProperty(const char *propName, double value);
bool setProperty(const char *propName, bool value);
bool setProperty(const char *propName);
-
-
-// IWmeDebugProp interface implementation
-public:
- virtual EWmeDebuggerPropType dbgGetType();
-
- // getters
- virtual int dbgGetValInt();
- virtual double dbgGetValFloat();
- virtual bool dbgGetValBool();
- virtual const char *dbgGetValString();
- virtual IWmeDebugObject *dbgGetValNative();
-
- // setters
- virtual bool dbgSetVal(int value);
- virtual bool dbgSetVal(double value);
- virtual bool dbgSetVal(bool value);
- virtual bool dbgSetVal(const char *value);
- virtual bool dbgSetVal();
-
- // properties
- virtual int dbgGetNumProperties();
- virtual bool dbgGetProperty(int index, const char **mame, IWmeDebugProp **value);
-
- virtual bool dbgGetDescription(char *buf, int bufSize);
};
} // end of namespace WinterMute