aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/forloopnode.h
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2022-04-29 10:48:09 +0200
committerRenaud G <renaud@rolisteam.org>2022-04-29 10:48:09 +0200
commit07c5f6ec23fcf9237a24e71adcfacabce677f818 (patch)
tree588e8c5f82b9163181fad3581f610e6f1d88cba4 /node/forloopnode.h
parenta9153f1615a842cfb9e9bcda4d9071e202618569 (diff)
downloadOneRoll-07c5f6ec23fcf9237a24e71adcfacabce677f818.tar.gz
OneRoll-07c5f6ec23fcf9237a24e71adcfacabce677f818.zip
Change file organization.
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