aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/variablenode.h
diff options
context:
space:
mode:
authorobiwankennedy <renaud@rolisteam.org>2017-11-30 13:24:17 +0100
committerobiwankennedy <renaud@rolisteam.org>2017-11-30 13:24:17 +0100
commitc930587ff1fd23cf14c9c428d1756a02e10728d0 (patch)
treec5202451a60ef802de50b8c1c1092acce2675b78 /node/variablenode.h
parent4efd58fa73100269256feb52679d53c51cf60632 (diff)
downloadOneRoll-c930587ff1fd23cf14c9c428d1756a02e10728d0.tar.gz
OneRoll-c930587ff1fd23cf14c9c428d1756a02e10728d0.zip
-Fix Variable node
Diffstat (limited to 'node/variablenode.h')
-rw-r--r--node/variablenode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/node/variablenode.h b/node/variablenode.h
index 9173ae3..6e9cc78 100644
--- a/node/variablenode.h
+++ b/node/variablenode.h
@@ -22,12 +22,12 @@ public:
qint64 getIndex() const;
void setIndex(qint64 index);
- std::vector<ExecutionNode *> getData() const;
- void setData(const std::vector<ExecutionNode *> &data);
+ std::vector<ExecutionNode *>* getData() const;
+ void setData(std::vector<ExecutionNode *>* data);
private:
qint64 m_index;
- std::vector<ExecutionNode*> m_data;
+ std::vector<ExecutionNode*>* m_data;
};
#endif // VARIABLENODE_H