Calculator
Step 6
|
#include <number_impl.hpp>
Public Member Functions | |
number_double (double value) | |
double | value () const |
virtual std::shared_ptr < number_impl > | promote_to_void () |
Public Member Functions inherited from number_impl | |
virtual | ~number_impl () |
void | print (std::ostream &stream) const |
std::string | to_string () const |
void | save (std::ostream &stream) const |
bool | equals (number_impl const &rhs) const |
bool | less (number_impl const &rhs) const |
std::shared_ptr< number_impl > | add (number_impl const &rhs) |
std::shared_ptr< number_impl > | subtract (number_impl const &rhs) |
std::shared_ptr< number_impl > | multiply (number_impl const &rhs) |
std::shared_ptr< number_impl > | divide (number_impl const &rhs) |
void | add_ref () |
void | del_ref () |
std::shared_ptr< number_impl > | promote (number_impl &rhs) const |
virtual std::shared_ptr < number_impl > | promote_to_long () |
virtual std::shared_ptr < number_impl > | promote_to_rational () |
virtual std::shared_ptr < number_impl > | promote_to_double () |
Private Member Functions | |
virtual std::string | do_to_string () const |
virtual void | do_save (std::ostream &stream) const |
virtual bool | do_equals (number_impl const &rhs) const |
virtual bool | do_less (number_impl const &rhs) const |
virtual std::shared_ptr < number_impl > | do_add (number_impl const &rhs) |
virtual std::shared_ptr < number_impl > | do_subtract (number_impl const &rhs) |
virtual std::shared_ptr < number_impl > | do_multiply (number_impl const &rhs) |
virtual std::shared_ptr < number_impl > | do_divide (number_impl const &rhs) |
virtual std::shared_ptr < number_impl > | do_promote (number_impl &rhs) const |
Private Attributes | |
double | value_ |
Additional Inherited Members | |
Static Public Member Functions inherited from number_impl | |
static std::shared_ptr < number_impl > | read_library (std::istream &stream) |
Protected Member Functions inherited from number_impl | |
number_impl () | |
Represent a floating-point value. Always use double
to represent floating-point values.
Definition at line 147 of file number_impl.hpp.
|
inline |
Definition at line 149 of file number_impl.hpp.
|
privatevirtual |
Implements number_impl.
Definition at line 354 of file number_impl.cpp.
References value(), and value_.
|
privatevirtual |
Implements number_impl.
Definition at line 369 of file number_impl.cpp.
References value(), and value_.
|
privatevirtual |
Implements number_impl.
Definition at line 342 of file number_impl.cpp.
References value().
|
privatevirtual |
Implements number_impl.
Definition at line 348 of file number_impl.cpp.
References value().
|
privatevirtual |
Implements number_impl.
Definition at line 364 of file number_impl.cpp.
References value(), and value_.
|
privatevirtual |
Implements number_impl.
Definition at line 377 of file number_impl.cpp.
References number_impl::promote_to_double().
|
privatevirtual |
|
privatevirtual |
Implements number_impl.
Definition at line 359 of file number_impl.cpp.
References value(), and value_.
|
privatevirtual |
|
virtual |
Reimplemented from number_impl.
Definition at line 383 of file number_impl.cpp.
|
inline |
Definition at line 150 of file number_impl.hpp.
References value_.
Referenced by do_add(), do_divide(), do_equals(), do_less(), do_multiply(), do_save(), do_subtract(), and do_to_string().
|
private |
Definition at line 163 of file number_impl.hpp.
Referenced by do_add(), do_divide(), do_multiply(), do_subtract(), and value().