**************************************************************** More...
#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Raises_Expr (TAO_PSDL_Node *first_scoped_name) | |
**************************************************************** | |
TAO_PSDL_Raises_Expr (TAO_PSDL_Node *first_scoped_name, TAO_PSDL_Node *second_scoped_name) | |
virtual | ~TAO_PSDL_Raises_Expr (void) |
TAO_PSDL_Node * | first_scoped_name (void) const |
Get the value. | |
TAO_PSDL_Node * | second_scoped_name (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | first_scoped_name_ |
The values. | |
TAO_PSDL_Node * | second_scoped_name_ |
****************************************************************
Definition at line 2374 of file PSDL_Node.h.
TAO_PSDL_Raises_Expr::TAO_PSDL_Raises_Expr | ( | TAO_PSDL_Node * | first_scoped_name | ) |
****************************************************************
Definition at line 3732 of file PSDL_Node.cpp.
: first_scoped_name_ (first_scoped_name), second_scoped_name_ (0) { this->psdl_scope_visitor ()->visit_raises_expr (this); this->set_identifier ("raises_exception"); }
TAO_PSDL_Raises_Expr::TAO_PSDL_Raises_Expr | ( | TAO_PSDL_Node * | first_scoped_name, | |
TAO_PSDL_Node * | second_scoped_name | |||
) |
Definition at line 3741 of file PSDL_Node.cpp.
: first_scoped_name_ (first_scoped_name), second_scoped_name_ (second_scoped_name) { this->set_identifier ("raises_exception"); this->psdl_scope_visitor ()->visit_raises_expr (this); }
TAO_PSDL_Raises_Expr::~TAO_PSDL_Raises_Expr | ( | void | ) | [virtual] |
Definition at line 3751 of file PSDL_Node.cpp.
{ delete this->first_scoped_name_; if (this->second_scoped_name_ != 0) delete this->second_scoped_name_; }
int TAO_PSDL_Raises_Expr::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 3774 of file PSDL_Node.cpp.
{ return visitor->visit_raises_expr (this); }
TAO_PSDL_Node * TAO_PSDL_Raises_Expr::first_scoped_name | ( | void | ) | const |
TAO_PSDL_Node * TAO_PSDL_Raises_Expr::second_scoped_name | ( | void | ) | const |
Definition at line 3767 of file PSDL_Node.cpp.
{ return this->second_scoped_name_; }
The values.
Definition at line 2394 of file PSDL_Node.h.
Definition at line 2395 of file PSDL_Node.h.