#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Union_Type:
Public Member Functions | |
TAO_PSDL_Union_Type (TAO_PSDL_Node *identifier, TAO_PSDL_Node *switch_type_spec, TAO_PSDL_Node *switch_body) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Union_Type (void) |
TAO_PSDL_Node * | identifier (void) const |
Get the value. | |
TAO_PSDL_Node * | switch_type_spec (void) const |
TAO_PSDL_Node * | switch_body (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | identifier_ |
The values. | |
TAO_PSDL_Node * | switch_type_spec_ |
TAO_PSDL_Node * | switch_body_ |
Definition at line 1766 of file PSDL_Node.h.
TAO_PSDL_Union_Type::TAO_PSDL_Union_Type | ( | TAO_PSDL_Node * | identifier, | |
TAO_PSDL_Node * | switch_type_spec, | |||
TAO_PSDL_Node * | switch_body | |||
) |
****************************************************************
Definition at line 2733 of file PSDL_Node.cpp.
02736 : identifier_ (identifier), 02737 switch_type_spec_ (switch_type_spec), 02738 switch_body_ (switch_body) 02739 { 02740 }
TAO_PSDL_Union_Type::~TAO_PSDL_Union_Type | ( | void | ) | [virtual] |
Definition at line 2742 of file PSDL_Node.cpp.
References identifier_, switch_body_, and switch_type_spec_.
02743 { 02744 delete this->identifier_; 02745 delete this->switch_type_spec_; 02746 delete this->switch_body_; 02747 }
int TAO_PSDL_Union_Type::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 2770 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_union_type().
02771 { 02772 return visitor->visit_union_type (this); 02773 }
TAO_PSDL_Node * TAO_PSDL_Union_Type::identifier | ( | void | ) | const |
Get the value.
Definition at line 2751 of file PSDL_Node.cpp.
References identifier_.
02752 { 02753 return this->identifier_; 02754 }
TAO_PSDL_Node * TAO_PSDL_Union_Type::switch_body | ( | void | ) | const |
Definition at line 2763 of file PSDL_Node.cpp.
References switch_body_.
02764 { 02765 return this->switch_body_; 02766 }
TAO_PSDL_Node * TAO_PSDL_Union_Type::switch_type_spec | ( | void | ) | const |
Definition at line 2757 of file PSDL_Node.cpp.
References switch_type_spec_.
02758 { 02759 return this->switch_type_spec_; 02760 }
TAO_PSDL_Node* TAO_PSDL_Union_Type::identifier_ [private] |
The values.
Definition at line 1786 of file PSDL_Node.h.
Referenced by identifier(), and ~TAO_PSDL_Union_Type().
TAO_PSDL_Node* TAO_PSDL_Union_Type::switch_body_ [private] |
Definition at line 1788 of file PSDL_Node.h.
Referenced by switch_body(), and ~TAO_PSDL_Union_Type().
Definition at line 1787 of file PSDL_Node.h.
Referenced by switch_type_spec(), and ~TAO_PSDL_Union_Type().