#include <list.h>
Public Member Functions | |
virtual | ~rpt_expr_list () |
Static Public Member Functions | |
static rpt_expr::pointer | create () |
Protected Member Functions | |
const char * | name () const |
rpt_value::pointer | evaluate () const |
Private Member Functions | |
rpt_expr_list () | |
rpt_expr_list (rpt_expr_list &) | |
rpt_expr_list & | operator= (rpt_expr_list &) |
Definition at line 28 of file list.h.
virtual rpt_expr_list::~rpt_expr_list | ( | ) | [virtual] |
The destructor.
rpt_expr_list::rpt_expr_list | ( | ) | [private] |
The default constructor. It's private on purpose; use the "create" class method instead.
rpt_expr_list::rpt_expr_list | ( | rpt_expr_list & | ) | [private] |
The copy constructor. Do not use.
static rpt_expr::pointer rpt_expr_list::create | ( | ) | [static] |
The create class method is used to create new dynamically allocated instances of list expression nodes.
const char* rpt_expr_list::name | ( | ) | const [protected] |
rpt_value::pointer rpt_expr_list::evaluate | ( | ) | const [protected, virtual] |
The evaluate method may be used to calculate the value of the expression syntax tree.
Implements rpt_expr.
rpt_expr_list& rpt_expr_list::operator= | ( | rpt_expr_list & | ) | [private] |
The assignment operator. Do not use.