summaryrefslogtreecommitdiffstats
path: root/src/uscxml/interpreter/MicroStepImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/interpreter/MicroStepImpl.h')
-rw-r--r--src/uscxml/interpreter/MicroStepImpl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/uscxml/interpreter/MicroStepImpl.h b/src/uscxml/interpreter/MicroStepImpl.h
index 53139bc..df5c07c 100644
--- a/src/uscxml/interpreter/MicroStepImpl.h
+++ b/src/uscxml/interpreter/MicroStepImpl.h
@@ -58,7 +58,7 @@ public:
/** Monitoring */
virtual std::set<InterpreterMonitor*> getMonitors() = 0;
- virtual Interpreter getInterpreter() = 0;
+ virtual const std::string& getSessionId() = 0;
virtual Logger getLogger() = 0;
/** Cache Data */
@@ -91,11 +91,11 @@ public:
virtual void deserialize(const Data& encodedState) = 0;
virtual Data serialize() = 0;
- /// To register at the factory
- virtual std::string getName() = 0;
+ /// To register at the factory
+ virtual std::string getName() = 0;
protected:
- MicroStepImpl() {};
+ MicroStepImpl() {};
MicroStepCallbacks* _callbacks;
};