aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/debugger/script_monitor.h
diff options
context:
space:
mode:
authorTobia Tesan2016-02-29 15:39:42 +0100
committerTobia Tesan2016-03-01 20:40:46 +0100
commita120aa855990f045d38d3b603306490305a48a39 (patch)
treec29f829e36ea762de60f683b23dbefd725717d16 /engines/wintermute/debugger/script_monitor.h
parentd5d25b0e89faebe4b1c5961d7b1ab872339e4a03 (diff)
downloadscummvm-rg350-a120aa855990f045d38d3b603306490305a48a39.tar.gz
scummvm-rg350-a120aa855990f045d38d3b603306490305a48a39.tar.bz2
scummvm-rg350-a120aa855990f045d38d3b603306490305a48a39.zip
WINTERMUTE: Add Watch functionality
Diffstat (limited to 'engines/wintermute/debugger/script_monitor.h')
-rw-r--r--engines/wintermute/debugger/script_monitor.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/wintermute/debugger/script_monitor.h b/engines/wintermute/debugger/script_monitor.h
index 5f3327692b..e9559e2ade 100644
--- a/engines/wintermute/debugger/script_monitor.h
+++ b/engines/wintermute/debugger/script_monitor.h
@@ -27,12 +27,15 @@ namespace Wintermute {
class DebuggableScript;
class Breakpoint;
+class Watch;
class ScriptMonitor {
public:
+
virtual ~ScriptMonitor() {};
virtual void notifyStep(DebuggableScript* script) = 0;
virtual void onBreakpoint(const Breakpoint* breakpoint, DebuggableScript* script) = 0;
+ virtual void onWatch(const Watch* watch, DebuggableScript* script) = 0;
};
} // End of namespace Wintermute