diff options
| author | 2018-09-02 12:22:03 +0200 | |
|---|---|---|
| committer | 2018-09-02 12:22:19 +0200 | |
| commit | 49567f95bf6985707fcf8c2836c761ce39602636 (patch) | |
| tree | 8c57132da55d15f14d7f604a61396d266afff00a /node/scalaroperatornode.h | |
| parent | e5a37ca38ef7b28695313e4b59f62c03d4801f2d (diff) | |
| download | OneRoll-49567f95bf6985707fcf8c2836c761ce39602636.tar.gz OneRoll-49567f95bf6985707fcf8c2836c761ce39602636.zip | |
Adding pow
Diffstat (limited to 'node/scalaroperatornode.h')
| -rw-r--r-- | node/scalaroperatornode.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/node/scalaroperatornode.h b/node/scalaroperatornode.h index f17f99f..04c3c23 100644 --- a/node/scalaroperatornode.h +++ b/node/scalaroperatornode.h @@ -94,6 +94,7 @@ public: * @return */ virtual ExecutionNode *getCopy() const; + private: /** * @brief add @@ -116,6 +117,8 @@ private: */ static qint64 multiple(qreal,qreal); + static qint64 pow(qreal a, qreal b); + private: ExecutionNode* m_internalNode; ScalarResult* m_scalarResult; |