aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/allsamenode.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/allsamenode.h
parenta9153f1615a842cfb9e9bcda4d9071e202618569 (diff)
downloadOneRoll-07c5f6ec23fcf9237a24e71adcfacabce677f818.tar.gz
OneRoll-07c5f6ec23fcf9237a24e71adcfacabce677f818.zip
Change file organization.
Diffstat (limited to 'node/allsamenode.h')
-rw-r--r--node/allsamenode.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/node/allsamenode.h b/node/allsamenode.h
deleted file mode 100644
index e5c1dc2..0000000
--- a/node/allsamenode.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef ALLSAMENODE_H
-#define ALLSAMENODE_H
-
-#include "executionnode.h"
-
-#include "result/diceresult.h"
-#include "validator.h"
-
-class AllSameNode : public ExecutionNode
-{
-public:
- AllSameNode();
-// virtual ~AllSameNode();
-
- virtual void run(ExecutionNode* previous);
- /**
- * @brief toString
- * @return
- */
- virtual QString toString(bool withLabel) const;
- /**
- * @brief getPriority
- * @return
- */
- virtual qint64 getPriority() const;
-
- virtual ExecutionNode* getCopy() const;
-
-private:
- DiceResult* m_diceResult;
-};
-
-#endif // FILTERNODE_H