Calculator
Step 3
|
#include <node_impl.hpp>
Public Member Functions | |
node_unary (node operand) | |
node | operand () const |
Public Member Functions inherited from node_impl | |
node_impl () | |
virtual | ~node_impl () |
void | print (std::ostream &stream, int indent) const |
double | evaluate () const |
std::string | to_string () const |
Protected Member Functions | |
double | evaluate_operand () const |
Private Member Functions | |
virtual void | print_node (std::ostream &stream, int indent) const override=0 |
virtual double | evaluate_node () const override=0 |
Private Attributes | |
node | operand_ |
Abstract base class for unary operators.
Definition at line 98 of file node_impl.hpp.
node_unary::node_unary | ( | node | operand | ) |
Definition at line 162 of file node_impl.cpp.
|
overrideprivatepure virtual |
Implements node_impl.
Implemented in node_negate.
|
protected |
Definition at line 172 of file node_impl.cpp.
References node::evaluate(), and operand().
Referenced by node_negate::evaluate_node().
node node_unary::operand | ( | ) | const |
Definition at line 166 of file node_impl.cpp.
References operand_.
Referenced by evaluate_operand(), and node_negate::print_node().
|
overrideprivatepure virtual |
Implements node_impl.
Implemented in node_negate.
|
private |
Definition at line 108 of file node_impl.hpp.
Referenced by operand().