#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.
|
****************************************************************
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 } |
|
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 } |
|
Definition at line 4267 of file PSDL_Node.cpp.
04268 { 04269 delete this->identifier_; 04270 04271 if (this->scoped_name_ != 0) 04272 delete this->scoped_name_; 04273 } |
|
= 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 } |
|
Get the value.
Definition at line 4277 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_scoped_name(), and Dump_Visitor::visit_scoped_name().
04278 { 04279 return this->identifier_; 04280 } |
|
Definition at line 4283 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_scoped_name(), and Dump_Visitor::visit_scoped_name().
04284 { 04285 return this->scoped_name_; 04286 } |
|
The values.
Definition at line 2730 of file PSDL_Node.h. |
|
Definition at line 2731 of file PSDL_Node.h. |