#include <node_impl.hpp>

Public Member Functions | |
| node_void () | |
| node_void (std::istream &stream) | |
Private Member Functions | |
| virtual void | print_node (std::ostream &stream, int indent) const |
| virtual number | evaluate_node () const |
| virtual std::string | evaluate_string () const |
| virtual void | save_node (std::ostream &stream) const |
Definition at line 55 of file node_impl.hpp.
| node_void::node_void | ( | ) |
| node_void::node_void | ( | std::istream & | stream | ) |
| void node_void::print_node | ( | std::ostream & | stream, | |
| int | indent | |||
| ) | const [private, virtual] |
| number node_void::evaluate_node | ( | ) | const [private, virtual] |
Implements node_impl.
Definition at line 119 of file node_impl.cpp.
00121 { 00122 return number(); 00123 }
| std::string node_void::evaluate_string | ( | ) | const [private, virtual] |
| void node_void::save_node | ( | std::ostream & | stream | ) | const [private, virtual] |
1.5.3