#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.
TAO_PSDL_Key_Dcl::TAO_PSDL_Key_Dcl | ( | TAO_PSDL_Node * | identifier, | |
TAO_PSDL_Node * | simple_declarator | |||
) |
****************************************************************
Definition at line 953 of file PSDL_Node.cpp.
00955 : identifier_ (identifier), 00956 simple_declarator_ (simple_declarator) 00957 { 00958 }
TAO_PSDL_Key_Dcl::TAO_PSDL_Key_Dcl | ( | TAO_PSDL_Node * | identifier | ) |
Definition at line 960 of file PSDL_Node.cpp.
00961 : identifier_ (identifier), 00962 simple_declarator_ (0) 00963 { 00964 }
TAO_PSDL_Key_Dcl::~TAO_PSDL_Key_Dcl | ( | void | ) | [virtual] |
Definition at line 966 of file PSDL_Node.cpp.
References identifier_, and simple_declarator_.
00967 { 00968 delete this->identifier_; 00969 if (this->simple_declarator_ != 0) 00970 delete this->simple_declarator_; 00971 }
int TAO_PSDL_Key_Dcl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= 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 }
TAO_PSDL_Node * TAO_PSDL_Key_Dcl::identifier | ( | void | ) | const |
Get the value.
Definition at line 975 of file PSDL_Node.cpp.
References identifier_.
Referenced by TAO_PSDL_Scope_Visitor::visit_key_dcl(), and Dump_Visitor::visit_key_dcl().
00976 { 00977 return this->identifier_; 00978 }
TAO_PSDL_Node * TAO_PSDL_Key_Dcl::simple_declarator | ( | void | ) | const |
Definition at line 981 of file PSDL_Node.cpp.
References simple_declarator_.
Referenced by TAO_PSDL_Scope_Visitor::visit_key_dcl(), and Dump_Visitor::visit_key_dcl().
00982 { 00983 return this->simple_declarator_; 00984 }
TAO_PSDL_Node* TAO_PSDL_Key_Dcl::identifier_ [private] |
The values.
Definition at line 684 of file PSDL_Node.h.
Referenced by identifier(), and ~TAO_PSDL_Key_Dcl().
Definition at line 685 of file PSDL_Node.h.
Referenced by simple_declarator(), and ~TAO_PSDL_Key_Dcl().