#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Key_Dcl:
Public Member Functions | |
TAO_PSDL_Key_Dcl (TAO_PSDL_Node *identifier, TAO_PSDL_Node *simple_declarator) | |
**************************************************************** | |
TAO_PSDL_Key_Dcl (TAO_PSDL_Node *identifier) | |
virtual | ~TAO_PSDL_Key_Dcl (void) |
TAO_PSDL_Node * | identifier (void) const |
Get the value. | |
TAO_PSDL_Node * | simple_declarator (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | identifier_ |
The values. | |
TAO_PSDL_Node * | simple_declarator_ |
Definition at line 664 of file PSDL_Node.h.
|
****************************************************************
Definition at line 953 of file PSDL_Node.cpp.
00955 : identifier_ (identifier), 00956 simple_declarator_ (simple_declarator) 00957 { 00958 } |
|
Definition at line 960 of file PSDL_Node.cpp.
00961 : identifier_ (identifier), 00962 simple_declarator_ (0) 00963 { 00964 } |
|
Definition at line 966 of file PSDL_Node.cpp.
00967 { 00968 delete this->identifier_; 00969 if (this->simple_declarator_ != 0) 00970 delete this->simple_declarator_; 00971 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 988 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_key_dcl().
00989 { 00990 return visitor->visit_key_dcl (this); 00991 } |
|
Get the value.
Definition at line 975 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_key_dcl(), and Dump_Visitor::visit_key_dcl().
00976 { 00977 return this->identifier_; 00978 } |
|
Definition at line 981 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_key_dcl(), and Dump_Visitor::visit_key_dcl().
00982 { 00983 return this->simple_declarator_; 00984 } |
|
The values.
Definition at line 684 of file PSDL_Node.h. |
|
Definition at line 685 of file PSDL_Node.h. |