#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Init_Param_Decls:
Public Member Functions | |
TAO_PSDL_Init_Param_Decls (TAO_PSDL_Node *init_param_decl) | |
**************************************************************** | |
TAO_PSDL_Init_Param_Decls (TAO_PSDL_Node *init_param_decl, TAO_PSDL_Node *init_param_decls) | |
virtual | ~TAO_PSDL_Init_Param_Decls (void) |
TAO_PSDL_Node * | init_param_decl (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 * | init_param_decl_ |
The values. | |
TAO_PSDL_Node * | init_param_decls_ |
Definition at line 3209 of file PSDL_Node.h.
|
****************************************************************
Definition at line 4983 of file PSDL_Node.cpp.
04984 : init_param_decl_ (init_param_decl), 04985 init_param_decls_ (0) 04986 { 04987 } |
|
Definition at line 4989 of file PSDL_Node.cpp.
04991 : init_param_decl_ (init_param_decl), 04992 init_param_decls_ (init_param_decls) 04993 { 04994 } |
|
Definition at line 4996 of file PSDL_Node.cpp. References init_param_decl_.
04997 { 04998 delete this->init_param_decl_; 04999 05000 if (this->init_param_decls_ != 0) 05001 delete this->init_param_decls_; 05002 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 5019 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_init_param_decls().
05020 { 05021 return visitor->visit_init_param_decls (this); 05022 } |
|
Get the value.
Definition at line 5006 of file PSDL_Node.cpp. References init_param_decl_.
05007 { 05008 return this->init_param_decl_; 05009 } |
|
Definition at line 5012 of file PSDL_Node.cpp.
05013 { 05014 return this->init_param_decls_; 05015 } |
|
The values.
Definition at line 3230 of file PSDL_Node.h. Referenced by init_param_decl(), and ~TAO_PSDL_Init_Param_Decls(). |
|
Definition at line 3231 of file PSDL_Node.h. |