#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.
|
****************************************************************
Definition at line 3442 of file PSDL_Node.cpp.
03443 : identifier_ (identifier), 03444 member_list_ (0) 03445 { 03446 } |
|
Definition at line 3448 of file PSDL_Node.cpp.
03450 : identifier_ (identifier), 03451 member_list_ (member_list) 03452 { 03453 } |
|
Definition at line 3455 of file PSDL_Node.cpp.
03456 { 03457 delete this->identifier_; 03458 if (this->member_list_ != 0) 03459 delete this->member_list_; 03460 } |
|
= 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 } |
|
Get the value.
Definition at line 3464 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Exception_Visitor::visit_except_dcl(), and Dump_Visitor::visit_except_dcl().
03465 { 03466 return this->identifier_; 03467 } |
|
Definition at line 3470 of file PSDL_Node.cpp. 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 } |
|
The values.
Definition at line 2220 of file PSDL_Node.h. |
|
Definition at line 2221 of file PSDL_Node.h. |