#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Declarators:
Public Member Functions | |
TAO_PSDL_Declarators (TAO_PSDL_Node *declarator) | |
**************************************************************** | |
TAO_PSDL_Declarators (TAO_PSDL_Node *declarator, TAO_PSDL_Node *set_of_declarators) | |
virtual | ~TAO_PSDL_Declarators (void) |
TAO_PSDL_Node * | declarator (void) const |
Get the value. | |
TAO_PSDL_Node * | set_of_declarators (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | declarator_ |
The values. | |
TAO_PSDL_Node * | set_of_declarators_ |
Definition at line 1543 of file PSDL_Node.h.
|
****************************************************************
Definition at line 2285 of file PSDL_Node.cpp.
02286 : declarator_ (declarator), 02287 set_of_declarators_ (0) 02288 { 02289 } |
|
Definition at line 2291 of file PSDL_Node.cpp.
02293 : declarator_ (declarator), 02294 set_of_declarators_ (set_of_declarators) 02295 { 02296 } |
|
Definition at line 2298 of file PSDL_Node.cpp. References declarator_, and set_of_declarators_.
02299 { 02300 delete this->declarator_; 02301 02302 if (this->set_of_declarators_ != 0) 02303 delete this->set_of_declarators_; 02304 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 2321 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_declarators().
02322 { 02323 return visitor->visit_declarators (this); 02324 } |
|
Get the value.
Definition at line 2308 of file PSDL_Node.cpp. References declarator_. Referenced by TAO_PSDL_Scope_Visitor::visit_declarators(), TAO_PSDL_Node_Visitor::visit_declarators(), and Dump_Visitor::visit_declarators().
02309 { 02310 return this->declarator_; 02311 } |
|
Definition at line 2314 of file PSDL_Node.cpp. References set_of_declarators_. Referenced by TAO_PSDL_Scope_Visitor::visit_declarators(), TAO_PSDL_Node_Visitor::visit_declarators(), and Dump_Visitor::visit_declarators().
02315 { 02316 return this->set_of_declarators_; 02317 } |
|
The values.
Definition at line 1563 of file PSDL_Node.h. Referenced by declarator(), and ~TAO_PSDL_Declarators(). |
|
Definition at line 1564 of file PSDL_Node.h. Referenced by set_of_declarators(), and ~TAO_PSDL_Declarators(). |