#include <Value.hpp>
Public Member Functions | |
Number (int32_t inMantissa, int32_t inExponent) | |
Number (const Number &inSource) throw () | |
Number & | operator= (const Number &inSource) throw () |
bool | operator< (const Number &inRhs) const throw () |
bool | operator== (const Number &inRhs) const throw () |
bool | operator> (const Number &inRhs) const throw () |
bool | operator>= (const Number &inRhs) const throw () |
bool | operator<= (const Number &inRhs) const throw () |
bool | operator!= (const Number &inRhs) const throw () |
const int32_t | getMantissa () const throw () |
void | setMantissa (const int32_t &inSource) throw () |
const int32_t | getExponent () const throw () |
void | setExponent (const int32_t &inSource) throw () |
double | eval () const throw () |
Private Attributes | |
int32_t | mMantissa |
int32_t | mExponent |
Definition at line 77 of file Value.hpp.