aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/executionnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/executionnode.cpp')
-rw-r--r--node/executionnode.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/node/executionnode.cpp b/node/executionnode.cpp
index dba56fc..c6f3915 100644
--- a/node/executionnode.cpp
+++ b/node/executionnode.cpp
@@ -1,7 +1,9 @@
#include "executionnode.h"
+#include <QUuid>
+
ExecutionNode::ExecutionNode()
- : m_nextNode(NULL),m_result(NULL),m_previousNode(NULL)
+ : m_nextNode(NULL),m_result(NULL),m_previousNode(NULL),m_id(QUuid::createUuid().toString())
{
}