#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.
|
****************************************************************
Definition at line 3640 of file PSDL_Node.cpp.
03641 : param_dcl_ (0) 03642 { 03643 } |
|
Definition at line 3645 of file PSDL_Node.cpp.
03646 : param_dcl_ (param_dcl) 03647 { 03648 } |
|
Definition at line 3650 of file PSDL_Node.cpp. References param_dcl_.
03651 { 03652 delete this->param_dcl_; 03653 } |
|
= 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 } |
|
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 } |
|
The values.
Definition at line 2335 of file PSDL_Node.h. Referenced by param_dcl(), and ~TAO_PSDL_Parameter_Dcls(). |