#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Init_Param_Decl:
Public Member Functions | |
TAO_PSDL_Init_Param_Decl (TAO_PSDL_Node *init_param_attribute, TAO_PSDL_Node *param_type_spec, TAO_PSDL_Node *simple_declarator) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Init_Param_Decl (void) |
TAO_PSDL_Node * | init_param_attribute (void) const |
Get the value. | |
TAO_PSDL_Node * | param_type_spec (void) const |
TAO_PSDL_Node * | simple_declarator (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | init_param_attribute_ |
The values. | |
TAO_PSDL_Node * | param_type_spec_ |
TAO_PSDL_Node * | simple_declarator_ |
Definition at line 3236 of file PSDL_Node.h.
TAO_PSDL_Init_Param_Decl::TAO_PSDL_Init_Param_Decl | ( | TAO_PSDL_Node * | init_param_attribute, | |
TAO_PSDL_Node * | param_type_spec, | |||
TAO_PSDL_Node * | simple_declarator | |||
) |
****************************************************************
Definition at line 5026 of file PSDL_Node.cpp.
05029 : init_param_attribute_ (init_param_attribute), 05030 param_type_spec_ (param_type_spec), 05031 simple_declarator_ (simple_declarator) 05032 { 05033 }
TAO_PSDL_Init_Param_Decl::~TAO_PSDL_Init_Param_Decl | ( | void | ) | [virtual] |
Definition at line 5035 of file PSDL_Node.cpp.
References init_param_attribute_, param_type_spec_, and simple_declarator_.
05036 { 05037 delete this->init_param_attribute_; 05038 05039 delete this->param_type_spec_; 05040 05041 delete this->simple_declarator_; 05042 }
int TAO_PSDL_Init_Param_Decl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 5065 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_init_param_decl().
05066 { 05067 return visitor->visit_init_param_decl (this); 05068 }
TAO_PSDL_Node * TAO_PSDL_Init_Param_Decl::init_param_attribute | ( | void | ) | const |
Get the value.
Definition at line 5046 of file PSDL_Node.cpp.
References init_param_attribute_.
05047 { 05048 return this->init_param_attribute_; 05049 }
TAO_PSDL_Node * TAO_PSDL_Init_Param_Decl::param_type_spec | ( | void | ) | const |
Definition at line 5052 of file PSDL_Node.cpp.
References param_type_spec_.
05053 { 05054 return this->param_type_spec_; 05055 }
TAO_PSDL_Node * TAO_PSDL_Init_Param_Decl::simple_declarator | ( | void | ) | const |
Definition at line 5058 of file PSDL_Node.cpp.
References simple_declarator_.
05059 { 05060 return this->simple_declarator_; 05061 }
The values.
Definition at line 3257 of file PSDL_Node.h.
Referenced by init_param_attribute(), and ~TAO_PSDL_Init_Param_Decl().
Definition at line 3258 of file PSDL_Node.h.
Referenced by param_type_spec(), and ~TAO_PSDL_Init_Param_Decl().
Definition at line 3259 of file PSDL_Node.h.
Referenced by simple_declarator(), and ~TAO_PSDL_Init_Param_Decl().