aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/occurencecountnode.h
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2019-02-14 23:45:18 +0100
committerRenaud G <renaud@rolisteam.org>2019-03-23 17:58:32 +0100
commit1d962712fdba24078b6ce35a2d616cd3155cfc31 (patch)
tree13d888e3734d44d44b83732bfe35d20bb23a7584 /node/occurencecountnode.h
parentc46ad9d1ceb345f09590ad8ea9a98b33a2a0c31b (diff)
downloadOneRoll-1d962712fdba24078b6ce35a2d616cd3155cfc31.tar.gz
OneRoll-1d962712fdba24078b6ce35a2d616cd3155cfc31.zip
add occurencecountnode
Diffstat (limited to 'node/occurencecountnode.h')
-rw-r--r--node/occurencecountnode.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/node/occurencecountnode.h b/node/occurencecountnode.h
index 9c9aa13..ed7f8b4 100644
--- a/node/occurencecountnode.h
+++ b/node/occurencecountnode.h
@@ -4,6 +4,7 @@
#include "executionnode.h"
#include "validator.h"
+class StringResult;
class OccurenceCountNode : public ExecutionNode
{
public:
@@ -15,10 +16,20 @@ public:
ExecutionNode* getCopy() const;
qint64 getPriority() const;
+ qint64 getWidth() const;
+ void setWidth(const qint64 &width);
+
+ qint64 getHeight() const;
+ void setHeight(const qint64 &height);
+
+ Validator *getValidator() const;
+ void setValidator(Validator *validator);
+
private:
qint64 m_width=0;
qint64 m_height=0;
Validator* m_validator;
+ StringResult* m_stringResult;
};
#endif // OCCURENCECOUNTNODE_H