**************************************************************** More...
#include <PSDL_Node.h>
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 5022 of file PSDL_Node.cpp.
: init_param_attribute_ (init_param_attribute), param_type_spec_ (param_type_spec), simple_declarator_ (simple_declarator) { }
TAO_PSDL_Init_Param_Decl::~TAO_PSDL_Init_Param_Decl | ( | void | ) | [virtual] |
Definition at line 5031 of file PSDL_Node.cpp.
{ delete this->init_param_attribute_; delete this->param_type_spec_; delete this->simple_declarator_; }
int TAO_PSDL_Init_Param_Decl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 5061 of file PSDL_Node.cpp.
{ return visitor->visit_init_param_decl (this); }
TAO_PSDL_Node * TAO_PSDL_Init_Param_Decl::init_param_attribute | ( | void | ) | const |
Get the value.
Definition at line 5042 of file PSDL_Node.cpp.
{ return this->init_param_attribute_; }
TAO_PSDL_Node * TAO_PSDL_Init_Param_Decl::param_type_spec | ( | void | ) | const |
Definition at line 5048 of file PSDL_Node.cpp.
{ return this->param_type_spec_; }
TAO_PSDL_Node * TAO_PSDL_Init_Param_Decl::simple_declarator | ( | void | ) | const |
Definition at line 5054 of file PSDL_Node.cpp.
{ return this->simple_declarator_; }
The values.
Definition at line 3257 of file PSDL_Node.h.
Definition at line 3258 of file PSDL_Node.h.
Definition at line 3259 of file PSDL_Node.h.