#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Parameter_Dcls:
Public Member Functions | |
TAO_PSDL_Parameter_Dcls () | |
**************************************************************** | |
TAO_PSDL_Parameter_Dcls (TAO_PSDL_Node *param_dcl) | |
virtual | ~TAO_PSDL_Parameter_Dcls (void) |
TAO_PSDL_Node * | param_dcl (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | param_dcl_ |
The values. |
Definition at line 2318 of file PSDL_Node.h.
TAO_PSDL_Parameter_Dcls::TAO_PSDL_Parameter_Dcls | ( | ) |
****************************************************************
Definition at line 3640 of file PSDL_Node.cpp.
03641 : param_dcl_ (0) 03642 { 03643 }
TAO_PSDL_Parameter_Dcls::TAO_PSDL_Parameter_Dcls | ( | TAO_PSDL_Node * | param_dcl | ) |
TAO_PSDL_Parameter_Dcls::~TAO_PSDL_Parameter_Dcls | ( | void | ) | [virtual] |
Definition at line 3650 of file PSDL_Node.cpp.
References param_dcl_.
03651 { 03652 delete this->param_dcl_; 03653 }
int TAO_PSDL_Parameter_Dcls::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 3664 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_parameter_dcls().
03665 { 03666 return visitor->visit_parameter_dcls (this); 03667 }
TAO_PSDL_Node * TAO_PSDL_Parameter_Dcls::param_dcl | ( | void | ) | const |
Get the value.
Definition at line 3657 of file PSDL_Node.cpp.
References param_dcl_.
Referenced by TAO_PSDL_Scope_Visitor::visit_parameter_dcls(), and Dump_Visitor::visit_parameter_dcls().
03658 { 03659 return this->param_dcl_; 03660 }
TAO_PSDL_Node* TAO_PSDL_Parameter_Dcls::param_dcl_ [private] |
The values.
Definition at line 2335 of file PSDL_Node.h.
Referenced by param_dcl(), and ~TAO_PSDL_Parameter_Dcls().