#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Except_Dcl:
Public Member Functions | |
TAO_PSDL_Except_Dcl (TAO_PSDL_Node *identifier) | |
**************************************************************** | |
TAO_PSDL_Except_Dcl (TAO_PSDL_Node *identifier, TAO_PSDL_Node *member_list) | |
virtual | ~TAO_PSDL_Except_Dcl (void) |
TAO_PSDL_Node * | identifier (void) const |
Get the value. | |
TAO_PSDL_Node * | member_list (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | identifier_ |
The values. | |
TAO_PSDL_Node * | member_list_ |
Definition at line 2200 of file PSDL_Node.h.
TAO_PSDL_Except_Dcl::TAO_PSDL_Except_Dcl | ( | TAO_PSDL_Node * | identifier | ) |
****************************************************************
Definition at line 3442 of file PSDL_Node.cpp.
03443 : identifier_ (identifier), 03444 member_list_ (0) 03445 { 03446 }
TAO_PSDL_Except_Dcl::TAO_PSDL_Except_Dcl | ( | TAO_PSDL_Node * | identifier, | |
TAO_PSDL_Node * | member_list | |||
) |
Definition at line 3448 of file PSDL_Node.cpp.
03450 : identifier_ (identifier), 03451 member_list_ (member_list) 03452 { 03453 }
TAO_PSDL_Except_Dcl::~TAO_PSDL_Except_Dcl | ( | void | ) | [virtual] |
Definition at line 3455 of file PSDL_Node.cpp.
References identifier_, and member_list_.
03456 { 03457 delete this->identifier_; 03458 if (this->member_list_ != 0) 03459 delete this->member_list_; 03460 }
int TAO_PSDL_Except_Dcl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 3477 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_except_dcl().
03478 { 03479 return visitor->visit_except_dcl (this); 03480 }
TAO_PSDL_Node * TAO_PSDL_Except_Dcl::identifier | ( | void | ) | const |
Get the value.
Definition at line 3464 of file PSDL_Node.cpp.
References identifier_.
Referenced by TAO_PSDL_Exception_Visitor::visit_except_dcl(), and Dump_Visitor::visit_except_dcl().
03465 { 03466 return this->identifier_; 03467 }
TAO_PSDL_Node * TAO_PSDL_Except_Dcl::member_list | ( | void | ) | const |
Definition at line 3470 of file PSDL_Node.cpp.
References member_list_.
Referenced by TAO_PSDL_Scope_Visitor::visit_except_dcl(), TAO_PSDL_Exception_Visitor::visit_except_dcl(), and Dump_Visitor::visit_except_dcl().
03471 { 03472 return this->member_list_; 03473 }
TAO_PSDL_Node* TAO_PSDL_Except_Dcl::identifier_ [private] |
The values.
Definition at line 2220 of file PSDL_Node.h.
Referenced by identifier(), and ~TAO_PSDL_Except_Dcl().
TAO_PSDL_Node* TAO_PSDL_Except_Dcl::member_list_ [private] |
Definition at line 2221 of file PSDL_Node.h.
Referenced by member_list(), and ~TAO_PSDL_Except_Dcl().