#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Param_Dcl:
Public Member Functions | |
TAO_PSDL_Param_Dcl (TAO_PSDL_Node *param_attribute, TAO_PSDL_Node *param_type_spec, TAO_PSDL_Node *simple_declarator) | |
**************************************************************** | |
TAO_PSDL_Param_Dcl (TAO_PSDL_Node *param_attribute, TAO_PSDL_Node *param_type_spec, TAO_PSDL_Node *simple_declarator, TAO_PSDL_Node *param_dcl) | |
virtual | ~TAO_PSDL_Param_Dcl (void) |
TAO_PSDL_Node * | param_attribute (void) const |
Get the value. | |
TAO_PSDL_Node * | param_type_spec (void) const |
TAO_PSDL_Node * | simple_declarator (void) const |
TAO_PSDL_Node * | param_dcl (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | param_attribute_ |
The values. | |
TAO_PSDL_Node * | param_type_spec_ |
TAO_PSDL_Node * | simple_declarator_ |
TAO_PSDL_Node * | param_dcl_ |
Definition at line 2340 of file PSDL_Node.h.
|
****************************************************************
Definition at line 3671 of file PSDL_Node.cpp.
03674 : param_attribute_ (param_attribute), 03675 param_type_spec_ (param_type_spec), 03676 simple_declarator_ (simple_declarator), 03677 param_dcl_ (0) 03678 { 03679 } |
|
Definition at line 3681 of file PSDL_Node.cpp.
03685 : param_attribute_ (param_attribute), 03686 param_type_spec_ (param_type_spec), 03687 simple_declarator_ (simple_declarator), 03688 param_dcl_ (param_dcl) 03689 { 03690 } |
|
Definition at line 3692 of file PSDL_Node.cpp. References param_attribute_, and param_type_spec_.
03693 { 03694 delete this->param_attribute_; 03695 delete this->param_type_spec_; 03696 delete this->simple_declarator_; 03697 03698 if (this->param_dcl_ != 0) 03699 delete this->param_dcl_; 03700 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 3729 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_param_dcl().
03730 { 03731 return visitor->visit_param_dcl (this); 03732 } |
|
Get the value.
Definition at line 3704 of file PSDL_Node.cpp. References param_attribute_. Referenced by TAO_PSDL_Scope_Visitor::visit_param_dcl(), and Dump_Visitor::visit_param_dcl().
03705 { 03706 return this->param_attribute_; 03707 } |
|
Definition at line 3722 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_param_dcl(), and Dump_Visitor::visit_param_dcl().
03723 { 03724 return this->param_dcl_; 03725 } |
|
Definition at line 3710 of file PSDL_Node.cpp. References param_type_spec_. Referenced by TAO_PSDL_Scope_Visitor::visit_param_dcl(), and Dump_Visitor::visit_param_dcl().
03711 { 03712 return this->param_type_spec_; 03713 } |
|
Definition at line 3716 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_param_dcl(), and Dump_Visitor::visit_param_dcl().
03717 { 03718 return this->simple_declarator_; 03719 } |
|
The values.
Definition at line 2366 of file PSDL_Node.h. Referenced by param_attribute(), and ~TAO_PSDL_Param_Dcl(). |
|
Definition at line 2369 of file PSDL_Node.h. |
|
Definition at line 2367 of file PSDL_Node.h. Referenced by param_type_spec(), and ~TAO_PSDL_Param_Dcl(). |
|
Definition at line 2368 of file PSDL_Node.h. |