#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Complex_Declarator:
Public Member Functions | |
TAO_PSDL_Complex_Declarator (TAO_PSDL_Node *array_declarator) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Complex_Declarator (void) |
TAO_PSDL_Node * | array_declarator (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | array_declarator_ |
The values. |
Definition at line 1641 of file PSDL_Node.h.
TAO_PSDL_Complex_Declarator::TAO_PSDL_Complex_Declarator | ( | TAO_PSDL_Node * | array_declarator | ) |
****************************************************************
Definition at line 2444 of file PSDL_Node.cpp.
02445 : array_declarator_ (array_declarator) 02446 { 02447 }
TAO_PSDL_Complex_Declarator::~TAO_PSDL_Complex_Declarator | ( | void | ) | [virtual] |
Definition at line 2449 of file PSDL_Node.cpp.
References array_declarator_.
02450 { 02451 delete this->array_declarator_; 02452 }
int TAO_PSDL_Complex_Declarator::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 2463 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_complex_declarator().
02464 { 02465 return visitor->visit_complex_declarator (this); 02466 }
TAO_PSDL_Node * TAO_PSDL_Complex_Declarator::array_declarator | ( | void | ) | const |
Get the value.
Definition at line 2456 of file PSDL_Node.cpp.
References array_declarator_.
Referenced by TAO_PSDL_Scope_Visitor::visit_complex_declarator(), and Dump_Visitor::visit_complex_declarator().
02457 { 02458 return this->array_declarator_; 02459 }
The values.
Definition at line 1657 of file PSDL_Node.h.
Referenced by array_declarator(), and ~TAO_PSDL_Complex_Declarator().