#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Scoped_Name:
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 4250 of file PSDL_Node.cpp.
References TAO_PSDL_Node::psdl_scope_visitor(), and TAO_PSDL_Scope_Visitor::visit_scoped_name().
04252 : identifier_ (identifier), 04253 scoped_name_ (0) 04254 { 04255 this->psdl_scope_visitor ()->visit_scoped_name (this); 04256 }
TAO_PSDL_Scoped_Name::TAO_PSDL_Scoped_Name | ( | TAO_PSDL_Node * | scoped_name, | |
TAO_PSDL_Node * | identifier | |||
) |
Definition at line 4258 of file PSDL_Node.cpp.
References TAO_PSDL_Node::psdl_scope_visitor(), and TAO_PSDL_Scope_Visitor::visit_scoped_name().
04261 : identifier_ (identifier), 04262 scoped_name_ (scoped_name) 04263 { 04264 this->psdl_scope_visitor ()->visit_scoped_name (this); 04265 }
TAO_PSDL_Scoped_Name::~TAO_PSDL_Scoped_Name | ( | void | ) | [virtual] |
Definition at line 4267 of file PSDL_Node.cpp.
References identifier_, and scoped_name_.
04268 { 04269 delete this->identifier_; 04270 04271 if (this->scoped_name_ != 0) 04272 delete this->scoped_name_; 04273 }
int TAO_PSDL_Scoped_Name::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 4290 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_scoped_name().
04291 { 04292 return visitor->visit_scoped_name (this); 04293 }
TAO_PSDL_Node * TAO_PSDL_Scoped_Name::identifier | ( | void | ) | const |
Get the value.
Definition at line 4277 of file PSDL_Node.cpp.
References identifier_.
Referenced by TAO_PSDL_Scope_Visitor::visit_scoped_name(), and Dump_Visitor::visit_scoped_name().
04278 { 04279 return this->identifier_; 04280 }
TAO_PSDL_Node * TAO_PSDL_Scoped_Name::scoped_name | ( | void | ) | const |
Definition at line 4283 of file PSDL_Node.cpp.
References scoped_name_.
Referenced by TAO_PSDL_Scope_Visitor::visit_scoped_name(), and Dump_Visitor::visit_scoped_name().
04284 { 04285 return this->scoped_name_; 04286 }
TAO_PSDL_Node* TAO_PSDL_Scoped_Name::identifier_ [private] |
The values.
Definition at line 2730 of file PSDL_Node.h.
Referenced by identifier(), and ~TAO_PSDL_Scoped_Name().
TAO_PSDL_Node* TAO_PSDL_Scoped_Name::scoped_name_ [private] |
Definition at line 2731 of file PSDL_Node.h.
Referenced by scoped_name(), and ~TAO_PSDL_Scoped_Name().