aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/stringnode.cpp
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2016-11-28 00:36:15 +0100
committerRenaud G <renaud@rolisteam.org>2016-11-28 00:36:15 +0100
commit13e297604b00615d47352538e3c82ea1ac700d4c (patch)
tree567efe03594d261831897f03a7821c4c6eeac59b /node/stringnode.cpp
parentcdd1716bd1aa8d9bbd0137aa98ff24867b6b3a0e (diff)
downloadOneRoll-13e297604b00615d47352538e3c82ea1ac700d4c.tar.gz
OneRoll-13e297604b00615d47352538e3c82ea1ac700d4c.zip
-Add API for copying a branch of execution node.
-Allow to use if node several times.
Diffstat (limited to 'node/stringnode.cpp')
-rw-r--r--node/stringnode.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/node/stringnode.cpp b/node/stringnode.cpp
index 157f595..d427cd6 100644
--- a/node/stringnode.cpp
+++ b/node/stringnode.cpp
@@ -115,7 +115,16 @@ qint64 StringNode::getPriority() const
{
priority = m_nextNode->getPriority();
}
-
-
return priority;
}
+ExecutionNode* StringNode::getCopy() const
+{
+ StringNode* node = new StringNode();
+ node->setString(m_data);
+ if(NULL!=m_nextNode)
+ {
+ node->setNextNode(m_nextNode->getCopy());
+ }
+ return node;
+
+}