|
Aegis
4.25.D505
|
#include <compound.h>
Public Member Functions | |
| virtual | ~rpt_stmt_compound () |
Static Public Member Functions | |
| static pointer | create () |
Protected Member Functions | |
| void | run (rpt_stmt_result_ty *) const |
Private Member Functions | |
| rpt_stmt_compound () | |
| rpt_stmt_compound (const rpt_stmt_compound &) | |
| rpt_stmt_compound & | operator= (const rpt_stmt_compound &) |
The rpt_stmt_compound class is sued to represent a coumpound statement node of the syntax tree.
Definition at line 29 of file compound.h.
| virtual rpt_stmt_compound::~rpt_stmt_compound | ( | ) | [virtual] |
The destructor.
| rpt_stmt_compound::rpt_stmt_compound | ( | ) | [private] |
The default constructor. It is private on purpose, use the "create" class method instead.
| rpt_stmt_compound::rpt_stmt_compound | ( | const rpt_stmt_compound & | ) | [private] |
The copy constructor. Do not use.
| static pointer rpt_stmt_compound::create | ( | ) | [static] |
The create class method is used to create new dynamically allocated instances of this class.
| rpt_stmt_compound& rpt_stmt_compound::operator= | ( | const rpt_stmt_compound & | ) | [private] |
The assignment operator. Do not use.
| void rpt_stmt_compound::run | ( | rpt_stmt_result_ty * | ) | const [protected, virtual] |
The run method is used to execute the statament.
Implements rpt_stmt.
1.7.6.1