#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Type_Declarator:
Public Member Functions | |
TAO_PSDL_Type_Declarator (TAO_PSDL_Node *type_spec, TAO_PSDL_Node *declarators) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Type_Declarator (void) |
TAO_PSDL_Node * | type_spec (void) const |
Get the value. | |
TAO_PSDL_Node * | declarators (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | type_spec_ |
The values. | |
TAO_PSDL_Node * | declarators_ |
Definition at line 1414 of file PSDL_Node.h.
TAO_PSDL_Type_Declarator::TAO_PSDL_Type_Declarator | ( | TAO_PSDL_Node * | type_spec, | |
TAO_PSDL_Node * | declarators | |||
) |
****************************************************************
Definition at line 2121 of file PSDL_Node.cpp.
02123 : type_spec_ (type_spec), 02124 declarators_ (declarators) 02125 { 02126 }
TAO_PSDL_Type_Declarator::~TAO_PSDL_Type_Declarator | ( | void | ) | [virtual] |
Definition at line 2128 of file PSDL_Node.cpp.
References declarators_, and type_spec_.
02129 { 02130 delete this->type_spec_; 02131 delete this->declarators_; 02132 }
int TAO_PSDL_Type_Declarator::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 2149 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_type_declarator().
02150 { 02151 return visitor->visit_type_declarator (this); 02152 }
TAO_PSDL_Node * TAO_PSDL_Type_Declarator::declarators | ( | void | ) | const |
Definition at line 2142 of file PSDL_Node.cpp.
References declarators_.
Referenced by TAO_PSDL_Type_Dcl_Visitor::visit_type_declarator(), TAO_PSDL_Scope_Visitor::visit_type_declarator(), and Dump_Visitor::visit_type_declarator().
02143 { 02144 return this->declarators_; 02145 }
TAO_PSDL_Node * TAO_PSDL_Type_Declarator::type_spec | ( | void | ) | const |
Get the value.
Definition at line 2136 of file PSDL_Node.cpp.
References type_spec_.
Referenced by TAO_PSDL_Type_Dcl_Visitor::visit_type_declarator(), TAO_PSDL_Scope_Visitor::visit_type_declarator(), and Dump_Visitor::visit_type_declarator().
02137 { 02138 return this->type_spec_; 02139 }
Definition at line 1433 of file PSDL_Node.h.
Referenced by declarators(), and ~TAO_PSDL_Type_Declarator().
The values.
Definition at line 1432 of file PSDL_Node.h.
Referenced by type_spec(), and ~TAO_PSDL_Type_Declarator().