aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/repeaternode.h
diff options
context:
space:
mode:
Diffstat (limited to 'node/repeaternode.h')
-rw-r--r--node/repeaternode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/node/repeaternode.h b/node/repeaternode.h
index 847db17..fa1a50a 100644
--- a/node/repeaternode.h
+++ b/node/repeaternode.h
@@ -35,12 +35,12 @@ public:
virtual ExecutionNode* getCopy() const override;
- void setCommand(ExecutionNode* node);
+ void setCommand(const std::vector<ExecutionNode*>& node);
void setTimeNode(ExecutionNode* times);
void setSumAll(bool b);
private:
- std::unique_ptr<ExecutionNode> m_cmd;
+ std::vector<ExecutionNode*> m_cmd;
ExecutionNode* m_times= nullptr;
bool m_sumAll= false;
};