#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Param_Type_Spec:
Public Member Functions | |
TAO_PSDL_Param_Type_Spec (TAO_PSDL_Node *type_of_param) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Param_Type_Spec (void) |
TAO_PSDL_Node * | type_of_param (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | type_of_param_ |
The values. |
Definition at line 2421 of file PSDL_Node.h.
TAO_PSDL_Param_Type_Spec::TAO_PSDL_Param_Type_Spec | ( | TAO_PSDL_Node * | type_of_param | ) |
****************************************************************
Definition at line 3809 of file PSDL_Node.cpp.
03811 : type_of_param_ (type_of_param) 03812 { 03813 }
TAO_PSDL_Param_Type_Spec::~TAO_PSDL_Param_Type_Spec | ( | void | ) | [virtual] |
Definition at line 3815 of file PSDL_Node.cpp.
References type_of_param_.
03816 { 03817 delete this->type_of_param_; 03818 }
int TAO_PSDL_Param_Type_Spec::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 3829 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_param_type_spec().
03830 { 03831 return visitor->visit_param_type_spec (this); 03832 }
TAO_PSDL_Node * TAO_PSDL_Param_Type_Spec::type_of_param | ( | void | ) | const |
Get the value.
Definition at line 3822 of file PSDL_Node.cpp.
References type_of_param_.
Referenced by TAO_PSDL_Scope_Visitor::visit_param_type_spec(), and Dump_Visitor::visit_param_type_spec().
03823 { 03824 return this->type_of_param_; 03825 }
The values.
Definition at line 2438 of file PSDL_Node.h.
Referenced by type_of_param(), and ~TAO_PSDL_Param_Type_Spec().