|
std::ostream & | Lox::operator<< (std::ostream &os, const Money &money) |
|
|
Money | Lox::operator* (const long double lhs, const Money &rhs) |
| allow things like "2.0 * cost" in addition to the usual "cost * 2.0" More...
|
|
Money | Lox::operator* (const double lhs, const Money &rhs) |
| allow things like "2.0 * cost" in addition to the usual "cost * 2.0" More...
|
|
Money | Lox::operator* (const size_t lhs, const Money &rhs) |
| allow things like "2.0 * cost" in addition to the usual "cost * 2.0" More...
|
|
Money | Lox::operator* (const int lhs, const Money &rhs) |
| allow things like "2.0 * cost" in addition to the usual "cost * 2.0" More...
|
|
|
Money | Lox::operator+ (const long double lhs, const Money &rhs) |
| allow things like "2.0 + cost" in addition to the usual "cost + 2.0" More...
|
|
Money | Lox::operator+ (const double lhs, const Money &rhs) |
| allow things like "2.0 + cost" in addition to the usual "cost + 2.0" More...
|
|
Money | Lox::operator+ (const size_t lhs, const Money &rhs) |
| allow things like "2.0 + cost" in addition to the usual "cost + 2.0" More...
|
|
Money | Lox::operator+ (const int lhs, const Money &rhs) |
| allow things like "2.0 + cost" in addition to the usual "cost + 2.0" More...
|
|
Class to help manage currency.