**************************************************************** More...
#include <PSDL_Node.h>
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.
TAO_PSDL_Simple_Declarator::TAO_PSDL_Simple_Declarator | ( | TAO_PSDL_Node * | identifier | ) |
****************************************************************
Definition at line 2349 of file PSDL_Node.cpp.
: identifier_ (identifier), simple_declarator_ (0) { }
TAO_PSDL_Simple_Declarator::TAO_PSDL_Simple_Declarator | ( | TAO_PSDL_Node * | identifier, | |
TAO_PSDL_Node * | simple_declarator | |||
) |
Definition at line 2356 of file PSDL_Node.cpp.
: identifier_ (identifier), simple_declarator_ (simple_declarator) { }
TAO_PSDL_Simple_Declarator::~TAO_PSDL_Simple_Declarator | ( | void | ) | [virtual] |
Definition at line 2364 of file PSDL_Node.cpp.
{ delete this->identifier_; if (this->simple_declarator_ != 0) delete this->simple_declarator_; }
int TAO_PSDL_Simple_Declarator::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 2387 of file PSDL_Node.cpp.
{ return visitor->visit_simple_declarator (this); }
TAO_PSDL_Node * TAO_PSDL_Simple_Declarator::identifier | ( | void | ) | const |
TAO_PSDL_Node * TAO_PSDL_Simple_Declarator::simple_declarator | ( | void | ) | const |
Definition at line 2380 of file PSDL_Node.cpp.
{ return this->simple_declarator_; }
The values.
Definition at line 1609 of file PSDL_Node.h.
Definition at line 1610 of file PSDL_Node.h.