|
Aegis
4.25.D505
|
#include <throw.h>
Public Member Functions | |
| virtual | ~rpt_stmt_throw () |
Static Public Member Functions | |
| static rpt_stmt::pointer | create (const rpt_expr::pointer &ep) |
Protected Member Functions | |
| void | run (rpt_stmt_result_ty *) const |
Private Member Functions | |
| rpt_stmt_throw (const rpt_expr::pointer &ep) | |
| rpt_stmt_throw () | |
| rpt_stmt_throw (const rpt_stmt_throw &) | |
| rpt_stmt_throw & | operator= (const rpt_stmt_throw &) |
Private Attributes | |
| rpt_expr::pointer | ep |
The rpt_stmt_throw class is used to represent a "throw" statement syntax tree node.
| virtual rpt_stmt_throw::~rpt_stmt_throw | ( | ) | [virtual] |
The destructor.
| rpt_stmt_throw::rpt_stmt_throw | ( | const rpt_expr::pointer & | ep | ) | [private] |
The constructor. It's private on purpose, use the "create" class method.
| ep | The value of the exception to be thrown. |
| rpt_stmt_throw::rpt_stmt_throw | ( | ) | [private] |
The default constructor. Do not use.
| rpt_stmt_throw::rpt_stmt_throw | ( | const rpt_stmt_throw & | ) | [private] |
The copy constructor. Do not use.
| static rpt_stmt::pointer rpt_stmt_throw::create | ( | const rpt_expr::pointer & | ep | ) | [static] |
The create class method is used to creatre new aynamically allocated instances of this class.
| ep | The value of the exception to be thrown. |
| rpt_stmt_throw& rpt_stmt_throw::operator= | ( | const rpt_stmt_throw & | ) | [private] |
The assignment operator. Do not use.
| void rpt_stmt_throw::run | ( | rpt_stmt_result_ty * | ) | const [protected, virtual] |
The run method is used to execute the statament.
Implements rpt_stmt.
rpt_expr::pointer rpt_stmt_throw::ep [private] |
1.7.6.1