|
Aegis
4.25.D505
|
#include <rel.h>
Public Member Functions | |
| virtual | ~rpt_expr_eq () |
Static Public Member Functions | |
| static rpt_expr::pointer | create (const rpt_expr::pointer &lhs, const rpt_expr::pointer &rhs) |
Protected Member Functions | |
| rpt_value::pointer | evaluate () const |
Private Member Functions | |
| rpt_expr_eq (const rpt_expr::pointer &lhs, const rpt_expr::pointer &rhs) | |
| rpt_expr_eq () | |
| rpt_expr_eq (const rpt_expr_eq &) | |
| rpt_expr_eq & | operator= (const rpt_expr_eq &) |
The rpt_expr_eq class is used to represent a syntax tree eq expression node.
| virtual rpt_expr_eq::~rpt_expr_eq | ( | ) | [virtual] |
The destructor.
| rpt_expr_eq::rpt_expr_eq | ( | const rpt_expr::pointer & | lhs, |
| const rpt_expr::pointer & | rhs | ||
| ) | [private] |
The constructor. It's private on purpose, use the "create" class method instead.
| rpt_expr_eq::rpt_expr_eq | ( | ) | [private] |
The default constructor. Do not use.
| rpt_expr_eq::rpt_expr_eq | ( | const rpt_expr_eq & | ) | [private] |
The copy constructor. Do not use.
| static rpt_expr::pointer rpt_expr_eq::create | ( | const rpt_expr::pointer & | lhs, |
| const rpt_expr::pointer & | rhs | ||
| ) | [static] |
The create class method is used to create new dynamically allocated instance of this class.
| rpt_value::pointer rpt_expr_eq::evaluate | ( | ) | const [protected, virtual] |
The evaluate method may be used to calculate the value of the expression syntax tree.
Implements rpt_expr.
| rpt_expr_eq& rpt_expr_eq::operator= | ( | const rpt_expr_eq & | ) | [private] |
The assignment operator. Do not use.
1.7.6.1