CCIMXDesktop
 
Loading...
Searching...
No Matches
FunctorTreeNode.h
1#ifndef FUNCTORTREENODE_H
2#define FUNCTORTREENODE_H
3#include <QString>
4#include "TreeNodeBase.h"
5
7 QString name;
8 TreeNodeBase* argument;
9
10public:
17 FunctorTreeNode(QString name, TreeNodeBase* arg);
24 double evaluate() const override;
25};
26
27#endif // FUNCTORTREENODE_H
Definition FunctorTreeNode.h:6
double evaluate() const override
evaluate the expressions
Definition FunctorTreeNode.cpp:25
Tree Node is expected to be like this!
Definition TreeNodeBase.h:7