diff options
| author | 2017-11-30 13:24:17 +0100 | |
|---|---|---|
| committer | 2017-11-30 13:24:17 +0100 | |
| commit | c930587ff1fd23cf14c9c428d1756a02e10728d0 (patch) | |
| tree | c5202451a60ef802de50b8c1c1092acce2675b78 /node/variablenode.h | |
| parent | 4efd58fa73100269256feb52679d53c51cf60632 (diff) | |
| download | OneRoll-c930587ff1fd23cf14c9c428d1756a02e10728d0.tar.gz OneRoll-c930587ff1fd23cf14c9c428d1756a02e10728d0.zip | |
-Fix Variable node
Diffstat (limited to 'node/variablenode.h')
| -rw-r--r-- | node/variablenode.h | 6 |
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 |