#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Simple_Declarator:
Public Member Functions | |
TAO_PSDL_Simple_Declarator (TAO_PSDL_Node *identifier) | |
**************************************************************** | |
TAO_PSDL_Simple_Declarator (TAO_PSDL_Node *identifier, TAO_PSDL_Node *simple_declarator) | |
virtual | ~TAO_PSDL_Simple_Declarator (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 1590 of file PSDL_Node.h.
|
****************************************************************
Definition at line 2353 of file PSDL_Node.cpp.
02355 : identifier_ (identifier), 02356 simple_declarator_ (0) 02357 { 02358 } |
|
Definition at line 2360 of file PSDL_Node.cpp.
02363 : identifier_ (identifier), 02364 simple_declarator_ (simple_declarator) 02365 { 02366 } |
|
Definition at line 2368 of file PSDL_Node.cpp.
02369 { 02370 delete this->identifier_; 02371 02372 if (this->simple_declarator_ != 0) 02373 delete this->simple_declarator_; 02374 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 2391 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_simple_declarator().
02392 { 02393 return visitor->visit_simple_declarator (this); 02394 } |
|
Get the value.
Definition at line 2378 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_simple_declarator(), TAO_PSDL_Node_Visitor::visit_simple_declarator(), and Dump_Visitor::visit_simple_declarator().
02379 { 02380 return this->identifier_; 02381 } |
|
Definition at line 2384 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_simple_declarator(), TAO_PSDL_Node_Visitor::visit_simple_declarator(), and Dump_Visitor::visit_simple_declarator().
02385 { 02386 return this->simple_declarator_; 02387 } |
|
The values.
Definition at line 1609 of file PSDL_Node.h. |
|
Definition at line 1610 of file PSDL_Node.h. |