aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/valueslistnode.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/valueslistnode.h
parenta9153f1615a842cfb9e9bcda4d9071e202618569 (diff)
downloadOneRoll-07c5f6ec23fcf9237a24e71adcfacabce677f818.tar.gz
OneRoll-07c5f6ec23fcf9237a24e71adcfacabce677f818.zip
Change file organization.
Diffstat (limited to 'node/valueslistnode.h')
-rw-r--r--node/valueslistnode.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/node/valueslistnode.h b/node/valueslistnode.h
deleted file mode 100644
index 100f275..0000000
--- a/node/valueslistnode.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#ifndef VALUESLISTNODE_H
-#define VALUESLISTNODE_H
-
-#include "executionnode.h"
-#include "result/diceresult.h"
-
-class ValuesListNode : public ExecutionNode
-{
-public:
- ValuesListNode();
-
- virtual void run(ExecutionNode* previous= nullptr) override;
- virtual QString toString(bool) const override;
- virtual qint64 getPriority() const override;
- virtual ExecutionNode* getCopy() const override;
-
- void insertValue(ExecutionNode*);
-
-private:
- std::vector<ExecutionNode*> m_data;
- DiceResult* m_diceResult = nullptr;
-};
-
-#endif // VALUESLISTNODE_H