diff options
Diffstat (limited to 'src/value.h')
-rw-r--r-- | src/value.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/value.h b/src/value.h index 8534e62..24fbf49 100644 --- a/src/value.h +++ b/src/value.h @@ -113,6 +113,10 @@ public: typedef boost::variant< boost::blank, bool, double, std::string, VectorType, RangeType > Variant; private: + static Value multvecnum(const Value &vecval, const Value &numval); + static Value multmatvec(const Value &matrixval, const Value &vectorval); + static Value multvecmat(const Value &vectorval, const Value &matrixval); + Variant value; }; |