summaryrefslogtreecommitdiffstats
path: root/src/uscxml/debug/DebugSession.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/debug/DebugSession.h')
-rw-r--r--src/uscxml/debug/DebugSession.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/uscxml/debug/DebugSession.h b/src/uscxml/debug/DebugSession.h
index fbfd065..c5ed7e5 100644
--- a/src/uscxml/debug/DebugSession.h
+++ b/src/uscxml/debug/DebugSession.h
@@ -22,6 +22,8 @@
#include "uscxml/debug/Breakpoint.h"
#include "uscxml/Interpreter.h"
+#include "uscxml/interpreter/LoggingImpl.h"
+
#include <time.h>
#include <set>
#include <thread>
@@ -31,7 +33,7 @@ namespace uscxml {
class Debugger;
-class USCXML_API DebugSession : public std::enable_shared_from_this<DebugSession> {
+class USCXML_API DebugSession : public LoggerImpl ,public std::enable_shared_from_this<DebugSession> {
public:
DebugSession() {
_isRunning = false;
@@ -77,6 +79,13 @@ public:
_markedForDeletion = mark;
}
+ // Logger
+ virtual std::shared_ptr<LoggerImpl> create();
+
+ virtual void log(LogSeverity severity, const Event& event);
+ virtual void log(LogSeverity severity, const Data& data);
+ virtual void log(LogSeverity severity, const std::string& message);
+
protected:
void breakExecution(Data replyData);