aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/sortresult.h
blob: 8433eba0f478db4f53b5596b40b09ba4ca179580 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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