#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 |
Definition at line 30 of file throw.h.
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. |
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_stmt_throw& rpt_stmt_throw::operator= | ( | const rpt_stmt_throw & | ) | [private] |
The assignment operator. Do not use.
rpt_expr::pointer rpt_stmt_throw::ep [private] |