diff options
| author | 2014-01-07 18:53:12 +0100 | |
|---|---|---|
| committer | 2014-01-07 18:53:12 +0100 | |
| commit | f6a213bd154e8abf8a1e5b6c57bc9a021ccc9e5b (patch) | |
| tree | 7e773676f153a7a5422de2f9b114958201b22271 /node | |
| parent | 62d37d86caa5704fccc0d9c3a41d6e0d22e9603d (diff) | |
| download | OneRoll-f6a213bd154e8abf8a1e5b6c57bc9a021ccc9e5b.tar.gz OneRoll-f6a213bd154e8abf8a1e5b6c57bc9a021ccc9e5b.zip | |
Update numbernode.h
add scalar result api to node
Diffstat (limited to 'node')
| -rw-r--r-- | node/numbernode.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/node/numbernode.h b/node/numbernode.h index ad472c6..0632696 100644 --- a/node/numbernode.h +++ b/node/numbernode.h @@ -1,6 +1,8 @@ #ifndef NUMBERNODE_H #define NUMBERNODE_H + #include "node/executionnode.h" +#include "scalarresult.h" class NumberNode : public ExecutionNode { @@ -11,7 +13,7 @@ public: private: qint64 m_number; - + ScalarResult* m_scalarResult; }; #endif // NUMBERNODE_H |