**************************************************************** More...
#include <PSDL_Node.h>
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 2729 of file PSDL_Node.cpp.
: identifier_ (identifier), switch_type_spec_ (switch_type_spec), switch_body_ (switch_body) { }
TAO_PSDL_Union_Type::~TAO_PSDL_Union_Type | ( | void | ) | [virtual] |
Definition at line 2738 of file PSDL_Node.cpp.
{ delete this->identifier_; delete this->switch_type_spec_; delete this->switch_body_; }
int TAO_PSDL_Union_Type::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 2766 of file PSDL_Node.cpp.
{ return visitor->visit_union_type (this); }
TAO_PSDL_Node * TAO_PSDL_Union_Type::identifier | ( | void | ) | const |
TAO_PSDL_Node * TAO_PSDL_Union_Type::switch_body | ( | void | ) | const |
Definition at line 2759 of file PSDL_Node.cpp.
{ return this->switch_body_; }
TAO_PSDL_Node * TAO_PSDL_Union_Type::switch_type_spec | ( | void | ) | const |
Definition at line 2753 of file PSDL_Node.cpp.
{ return this->switch_type_spec_; }
TAO_PSDL_Node* TAO_PSDL_Union_Type::identifier_ [private] |
The values.
Definition at line 1786 of file PSDL_Node.h.
TAO_PSDL_Node* TAO_PSDL_Union_Type::switch_body_ [private] |
Definition at line 1788 of file PSDL_Node.h.
Definition at line 1787 of file PSDL_Node.h.