diff options
Diffstat (limited to 'node/sortresult.h')
| -rw-r--r-- | node/sortresult.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/node/sortresult.h b/node/sortresult.h new file mode 100644 index 0000000..8433eba --- /dev/null +++ b/node/sortresult.h @@ -0,0 +1,18 @@ +#ifndef SORTRESULT_H +#define SORTRESULT_H + +#include "executionnode.h" + +class SortResultNode : public ExecutionNode +{ +public: + SortResultNode(); + virtual void run(ExecutionNode*); + + + void setSortAscending(bool asc); +private: + bool m_ascending; +}; + +#endif // SORTRESULT_H |