#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Init_Dcl:
Public Member Functions | |
TAO_PSDL_Init_Dcl (TAO_PSDL_Node *identifier) | |
**************************************************************** | |
TAO_PSDL_Init_Dcl (TAO_PSDL_Node *identifier, TAO_PSDL_Node *init_param_decls) | |
virtual | ~TAO_PSDL_Init_Dcl (void) |
TAO_PSDL_Node * | identifier (void) const |
Get the value. | |
TAO_PSDL_Node * | init_param_decls (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | identifier_ |
The values. | |
TAO_PSDL_Node * | init_param_decls_ |
Definition at line 3182 of file PSDL_Node.h.
|
****************************************************************
Definition at line 4940 of file PSDL_Node.cpp.
04941 : identifier_ (identifier), 04942 init_param_decls_ (0) 04943 { 04944 } |
|
Definition at line 4946 of file PSDL_Node.cpp.
04948 : identifier_ (identifier), 04949 init_param_decls_ (init_param_decls) 04950 { 04951 } |
|
Definition at line 4953 of file PSDL_Node.cpp. References init_param_decls_.
04954 { 04955 delete this->identifier_; 04956 04957 if (this->init_param_decls_ != 0) 04958 delete this->init_param_decls_; 04959 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 4976 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_init_dcl().
04977 { 04978 return visitor->visit_init_dcl (this); 04979 } |
|
Get the value.
Definition at line 4963 of file PSDL_Node.cpp.
04964 { 04965 return this->identifier_; 04966 } |
|
Definition at line 4969 of file PSDL_Node.cpp. References init_param_decls_.
04970 { 04971 return this->init_param_decls_; 04972 } |
|
The values.
Definition at line 3203 of file PSDL_Node.h. |
|
Definition at line 3204 of file PSDL_Node.h. Referenced by init_param_decls(), and ~TAO_PSDL_Init_Dcl(). |