aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/forloopnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'node/forloopnode.h')
-rw-r--r--node/forloopnode.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/node/forloopnode.h b/node/forloopnode.h
deleted file mode 100644
index a9acf20..0000000
--- a/node/forloopnode.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef FORLOOPNODE_H
-#define FORLOOPNODE_H
-
-#include "executionnode.h"
-#include "result/diceresult.h"
-#include <memory>
-
-class MockNode : public ExecutionNode
-{
-public:
- MockNode();
- void run(ExecutionNode* node);
- void setResult(Result* result);
- QString toString(bool withLabel) const;
- qint64 getPriority() const;
- ExecutionNode* getCopy() const;
-};
-
-class ForLoopNode : public ExecutionNode
-{
-public:
- ForLoopNode();
- void run(ExecutionNode* previous);
-
- void setInternal(ExecutionNode* internal);
-
- QString toString(bool withLabel) const;
- qint64 getPriority() const;
- ExecutionNode* getCopy() const;
-
-private:
- std::unique_ptr<ExecutionNode> m_internal;
- DiceResult* m_diceResult;
-};
-
-#endif // FORLOOPNODE_H