#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Catalog_Name:
Public Member Functions | |
TAO_PSDL_Catalog_Name (TAO_PSDL_Node *scoped_name) | |
**************************************************************** | |
TAO_PSDL_Catalog_Name (TAO_PSDL_Node *scoped_name, TAO_PSDL_Node *catalog_name) | |
virtual | ~TAO_PSDL_Catalog_Name (void) |
TAO_PSDL_Node * | scoped_name (void) const |
Get the value. | |
TAO_PSDL_Node * | catalog_name (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | scoped_name_ |
The values. | |
TAO_PSDL_Node * | catalog_name_ |
Definition at line 742 of file PSDL_Node.h.
|
****************************************************************
Definition at line 1084 of file PSDL_Node.cpp.
01085 : scoped_name_ (scoped_name), 01086 catalog_name_ (0) 01087 { 01088 } |
|
Definition at line 1090 of file PSDL_Node.cpp.
01092 : scoped_name_ (scoped_name), 01093 catalog_name_ (catalog_name) 01094 { 01095 } |
|
Definition at line 1097 of file PSDL_Node.cpp.
01098 { 01099 delete this->scoped_name_; 01100 if (this->catalog_name_ != 0) 01101 delete this->catalog_name_; 01102 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 1119 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_catalog_name().
01120 { 01121 return visitor->visit_catalog_name (this); 01122 } |
|
Definition at line 1112 of file PSDL_Node.cpp.
01113 { 01114 return this->catalog_name_; 01115 } |
|
Get the value.
Definition at line 1106 of file PSDL_Node.cpp.
01107 { 01108 return this->scoped_name_; 01109 } |
|
Definition at line 762 of file PSDL_Node.h. |
|
The values.
Definition at line 761 of file PSDL_Node.h. |