summaryrefslogtreecommitdiffstats
path: root/src/uscxml/debug/DebugSession.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-04-22 14:02:03 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-04-22 14:02:03 (GMT)
commit1fb6bcf30f954e426f2d3002d14887574fb941dd (patch)
tree08cff7f2b879c50efe79e3c04d255075522af862 /src/uscxml/debug/DebugSession.h
parent71c334bf4e35559496feac3f3cf00b72ceb88812 (diff)
downloaduscxml-1fb6bcf30f954e426f2d3002d14887574fb941dd.zip
uscxml-1fb6bcf30f954e426f2d3002d14887574fb941dd.tar.gz
uscxml-1fb6bcf30f954e426f2d3002d14887574fb941dd.tar.bz2
Major refactoring
- Moved tests - Changes to promela datamodel - Implemented Trie
Diffstat (limited to 'src/uscxml/debug/DebugSession.h')
-rw-r--r--src/uscxml/debug/DebugSession.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/uscxml/debug/DebugSession.h b/src/uscxml/debug/DebugSession.h
index 12f1d93..1fb4f4d 100644
--- a/src/uscxml/debug/DebugSession.h
+++ b/src/uscxml/debug/DebugSession.h
@@ -27,7 +27,7 @@
namespace uscxml {
class Debugger;
-
+
class USCXML_API DebugSession : public boost::enable_shared_from_this<DebugSession> {
public:
DebugSession() {
@@ -37,13 +37,13 @@ public:
_markedForDeletion = false;
_debugger = NULL;
}
-
+
void stepping(bool enable) {
_isStepping = enable;
}
-
+
void checkBreakpoints(const std::list<Breakpoint> qualifiedBreakpoints);
-
+
Data debugPrepare(const Data& data);
Data debugAttach(const Data& data);
Data debugDetach(const Data& data);
@@ -60,26 +60,26 @@ public:
Data enableAllBreakPoints();
Data disableAllBreakPoints();
Data debugEval(const Data& data);
-
+
void setDebugger(Debugger* debugger) {
_debugger = debugger;
}
-
+
Interpreter getInterpreter() {
return _interpreter;
}
-
+
void markForDeletion(bool mark) {
_markedForDeletion = mark;
}
-
+
protected:
void breakExecution(Data replyData);
bool _isStepping;
bool _isAttached;
bool _breakpointsEnabled;
-
+
tthread::condition_variable _resumeCond;
tthread::recursive_mutex _runMutex;
tthread::recursive_mutex _mutex;
@@ -89,7 +89,7 @@ protected:
Interpreter _interpreter;
std::set<Breakpoint> _breakPoints;
Breakpoint _skipTo;
-
+
};