Calculator  Step 5
Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes | List of all members
node_unary Class Referenceabstract

#include <node_impl.hpp>

Inheritance diagram for node_unary:
node_impl node_negate

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
 
identifier_list const & get_parameters () const
 
void save (std::ostream &stream) const
 

Protected Member Functions

 node_unary (std::istream &stream)
 
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
 
virtual void save_node (std::ostream &stream) const override=0
 

Private Attributes

node operand_
 

Additional Inherited Members

- Static Public Member Functions inherited from node_impl
static std::shared_ptr< node_implread_node (std::istream &stream)
 

Detailed Description

Abstract base class for unary operators.

Definition at line 131 of file node_impl.hpp.

Constructor & Destructor Documentation

node_unary::node_unary ( node  operand)

Definition at line 352 of file node_impl.cpp.

353 : node_impl{}, operand_{operand}
354 {}
node operand_
Definition: node_impl.hpp:143
node_unary::node_unary ( std::istream &  stream)
protected

Definition at line 356 of file node_impl.cpp.

357 : node_impl{}, operand_{stream}
358 {}
node operand_
Definition: node_impl.hpp:143

Member Function Documentation

virtual double node_unary::evaluate_node ( ) const
overrideprivatepure virtual

Implements node_impl.

Implemented in node_negate.

double node_unary::evaluate_operand ( ) const
protected

Definition at line 366 of file node_impl.cpp.

References node::evaluate(), and operand().

Referenced by node_negate::evaluate_node().

368 {
369  return operand().evaluate();
370 }
double evaluate() const
Definition: node.cpp:60
node operand() const
Definition: node_impl.cpp:360
node node_unary::operand ( ) const

Definition at line 360 of file node_impl.cpp.

References operand_.

Referenced by evaluate_operand(), node_negate::print_node(), and node_negate::save_node().

362 {
363  return operand_;
364 }
node operand_
Definition: node_impl.hpp:143
virtual void node_unary::print_node ( std::ostream &  stream,
int  indent 
) const
overrideprivatepure virtual

Implements node_impl.

Implemented in node_negate.

virtual void node_unary::save_node ( std::ostream &  stream) const
overrideprivatepure virtual

Implements node_impl.

Implemented in node_negate.

Member Data Documentation

node node_unary::operand_
private

Definition at line 143 of file node_impl.hpp.

Referenced by operand().


The documentation for this class was generated from the following files: