aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/debugger/debugger_controller.h
diff options
context:
space:
mode:
authorTobia Tesan2016-02-29 15:29:27 +0100
committerTobia Tesan2016-03-01 20:40:45 +0100
commitde82216dff8fc3339c493cb1a4913eea119d614f (patch)
tree8209fab51f65149283f2efc286091f39a804d09e /engines/wintermute/debugger/debugger_controller.h
parent4926cc7cff3be8e63d590d6e1367f371e63655d5 (diff)
downloadscummvm-rg350-de82216dff8fc3339c493cb1a4913eea119d614f.tar.gz
scummvm-rg350-de82216dff8fc3339c493cb1a4913eea119d614f.tar.bz2
scummvm-rg350-de82216dff8fc3339c493cb1a4913eea119d614f.zip
WINTERMUTE: Add source functionality in debugger
Diffstat (limited to 'engines/wintermute/debugger/debugger_controller.h')
-rw-r--r--engines/wintermute/debugger/debugger_controller.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/wintermute/debugger/debugger_controller.h b/engines/wintermute/debugger/debugger_controller.h
index b4119b56d3..7af2a039b1 100644
--- a/engines/wintermute/debugger/debugger_controller.h
+++ b/engines/wintermute/debugger/debugger_controller.h
@@ -51,7 +51,7 @@ struct TopEntry {
};
class DebuggerController : public ScriptMonitor {
- ListingProvider *_listingProvider;
+ SourceListingProvider *_sourceListingProvider;
const WintermuteEngine *_engine;
DebuggableScript *_lastScript;
uint32 _lastDepth;
@@ -83,6 +83,8 @@ public:
* @brief continue execution and don't step until the current activation record is popped
*/
Error stepFinish();
+ Error setSourcePath(const Common::String &sourcePath);
+ Common::String getSourcePath() const;
Listing *getListing(Error* &err);
void showFps(bool show);
/**