aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/numbernode.h
blob: 06326961a32c344f352a1fccaca213a13f6a2b87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef NUMBERNODE_H
#define NUMBERNODE_H

#include "node/executionnode.h"
#include "scalarresult.h"

class NumberNode : public ExecutionNode
{
public:
    NumberNode();
    void run(ExecutionNode* previous);
    void setNumber(qint64);

private:
    qint64 m_number;
    ScalarResult* m_scalarResult;
};

#endif // NUMBERNODE_H