diff options
Diffstat (limited to 'number.h')
-rw-r--r-- | number.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -33,6 +33,14 @@ public: number operator+(const number &n) const; /** + * \brief Return the result of the multiplication of a number and this + * number. + * + * \param n The number to multiply with this number. + */ + number operator*(const number &) const; + + /** * \brief Tells whether the number passed as parameter is strictly less * than this number. * |