#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Switch_Type_Spec:
Public Member Functions | |
TAO_PSDL_Switch_Type_Spec (TAO_PSDL_Node *type) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Switch_Type_Spec (void) |
TAO_PSDL_Node * | type (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | type_ |
The values. |
Definition at line 1793 of file PSDL_Node.h.
TAO_PSDL_Switch_Type_Spec::TAO_PSDL_Switch_Type_Spec | ( | TAO_PSDL_Node * | type | ) |
****************************************************************
Definition at line 2777 of file PSDL_Node.cpp.
TAO_PSDL_Switch_Type_Spec::~TAO_PSDL_Switch_Type_Spec | ( | void | ) | [virtual] |
Definition at line 2782 of file PSDL_Node.cpp.
References type_.
02783 { 02784 delete this->type_; 02785 }
int TAO_PSDL_Switch_Type_Spec::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 2796 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_switch_type_spec().
02797 { 02798 return visitor->visit_switch_type_spec (this); 02799 }
TAO_PSDL_Node * TAO_PSDL_Switch_Type_Spec::type | ( | void | ) | const |
Get the value.
Definition at line 2789 of file PSDL_Node.cpp.
References type_.
02790 { 02791 return this->type_; 02792 }
TAO_PSDL_Node* TAO_PSDL_Switch_Type_Spec::type_ [private] |
The values.
Reimplemented from TAO_PSDL_Node.
Definition at line 1809 of file PSDL_Node.h.
Referenced by type(), and ~TAO_PSDL_Switch_Type_Spec().