#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.
TAO_PSDL_Catalog_Name::TAO_PSDL_Catalog_Name | ( | TAO_PSDL_Node * | scoped_name | ) |
****************************************************************
Definition at line 1084 of file PSDL_Node.cpp.
01085 : scoped_name_ (scoped_name), 01086 catalog_name_ (0) 01087 { 01088 }
TAO_PSDL_Catalog_Name::TAO_PSDL_Catalog_Name | ( | TAO_PSDL_Node * | scoped_name, | |
TAO_PSDL_Node * | catalog_name | |||
) |
Definition at line 1090 of file PSDL_Node.cpp.
01092 : scoped_name_ (scoped_name), 01093 catalog_name_ (catalog_name) 01094 { 01095 }
TAO_PSDL_Catalog_Name::~TAO_PSDL_Catalog_Name | ( | void | ) | [virtual] |
Definition at line 1097 of file PSDL_Node.cpp.
References catalog_name_, and scoped_name_.
01098 { 01099 delete this->scoped_name_; 01100 if (this->catalog_name_ != 0) 01101 delete this->catalog_name_; 01102 }
int TAO_PSDL_Catalog_Name::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= 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 }
TAO_PSDL_Node * TAO_PSDL_Catalog_Name::catalog_name | ( | void | ) | const |
Definition at line 1112 of file PSDL_Node.cpp.
References catalog_name_.
01113 { 01114 return this->catalog_name_; 01115 }
TAO_PSDL_Node * TAO_PSDL_Catalog_Name::scoped_name | ( | void | ) | const |
Get the value.
Definition at line 1106 of file PSDL_Node.cpp.
References scoped_name_.
01107 { 01108 return this->scoped_name_; 01109 }
Definition at line 762 of file PSDL_Node.h.
Referenced by catalog_name(), and ~TAO_PSDL_Catalog_Name().
TAO_PSDL_Node* TAO_PSDL_Catalog_Name::scoped_name_ [private] |
The values.
Definition at line 761 of file PSDL_Node.h.
Referenced by scoped_name(), and ~TAO_PSDL_Catalog_Name().