**************************************************************** More...
#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Scoped_Name (TAO_PSDL_Node *identifier) | |
**************************************************************** | |
TAO_PSDL_Scoped_Name (TAO_PSDL_Node *scoped_name, TAO_PSDL_Node *identifier) | |
virtual | ~TAO_PSDL_Scoped_Name (void) |
TAO_PSDL_Node * | identifier (void) const |
Get the value. | |
TAO_PSDL_Node * | scoped_name (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | identifier_ |
The values. | |
TAO_PSDL_Node * | scoped_name_ |
****************************************************************
Definition at line 2710 of file PSDL_Node.h.
TAO_PSDL_Scoped_Name::TAO_PSDL_Scoped_Name | ( | TAO_PSDL_Node * | identifier | ) |
****************************************************************
Definition at line 4246 of file PSDL_Node.cpp.
: identifier_ (identifier), scoped_name_ (0) { this->psdl_scope_visitor ()->visit_scoped_name (this); }
TAO_PSDL_Scoped_Name::TAO_PSDL_Scoped_Name | ( | TAO_PSDL_Node * | scoped_name, | |
TAO_PSDL_Node * | identifier | |||
) |
Definition at line 4254 of file PSDL_Node.cpp.
: identifier_ (identifier), scoped_name_ (scoped_name) { this->psdl_scope_visitor ()->visit_scoped_name (this); }
TAO_PSDL_Scoped_Name::~TAO_PSDL_Scoped_Name | ( | void | ) | [virtual] |
Definition at line 4263 of file PSDL_Node.cpp.
{ delete this->identifier_; if (this->scoped_name_ != 0) delete this->scoped_name_; }
int TAO_PSDL_Scoped_Name::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 4286 of file PSDL_Node.cpp.
{ return visitor->visit_scoped_name (this); }
TAO_PSDL_Node * TAO_PSDL_Scoped_Name::identifier | ( | void | ) | const |
TAO_PSDL_Node * TAO_PSDL_Scoped_Name::scoped_name | ( | void | ) | const |
Definition at line 4279 of file PSDL_Node.cpp.
{ return this->scoped_name_; }
TAO_PSDL_Node* TAO_PSDL_Scoped_Name::identifier_ [private] |
The values.
Definition at line 2730 of file PSDL_Node.h.
TAO_PSDL_Node* TAO_PSDL_Scoped_Name::scoped_name_ [private] |
Definition at line 2731 of file PSDL_Node.h.