summaryrefslogtreecommitdiffstats
path: root/src/uscxml/interpreter/InterpreterDraft7.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/interpreter/InterpreterDraft7.cpp')
-rw-r--r--src/uscxml/interpreter/InterpreterDraft7.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/uscxml/interpreter/InterpreterDraft7.cpp b/src/uscxml/interpreter/InterpreterDraft7.cpp
index 7f16b1f..fa578b3 100644
--- a/src/uscxml/interpreter/InterpreterDraft7.cpp
+++ b/src/uscxml/interpreter/InterpreterDraft7.cpp
@@ -1,6 +1,7 @@
#include "InterpreterDraft7.h"
#include <glog/logging.h>
+#include "uscxml/UUID.h"
namespace uscxml {
@@ -31,7 +32,7 @@ void InterpreterDraft7::interpret() {
if (!_scxml)
return;
- _sessionId = getUUID();
+ _sessionId = UUID::getUUID();
std::string datamodelName;
if (datamodelName.length() == 0 && HAS_ATTR(_scxml, "datamodel"))