**************************************************************** More...
#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Catalog (TAO_PSDL_Node *identifier) | |
**************************************************************** | |
TAO_PSDL_Catalog (TAO_PSDL_Node *identifier, TAO_PSDL_Node *catalog_inh_spec, TAO_PSDL_Node *catalog_body) | |
TAO_PSDL_Catalog (TAO_PSDL_Node *identifier, TAO_PSDL_Node *catalog_body) | |
virtual | ~TAO_PSDL_Catalog (void) |
TAO_PSDL_Node * | identifier (void) const |
Get the value. | |
TAO_PSDL_Node * | catalog_inh_spec (void) const |
TAO_PSDL_Node * | catalog_body (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | identifier_ |
The values. | |
TAO_PSDL_Node * | catalog_inh_spec_ |
TAO_PSDL_Node * | catalog_body_ |
****************************************************************
Definition at line 690 of file PSDL_Node.h.
TAO_PSDL_Catalog::TAO_PSDL_Catalog | ( | TAO_PSDL_Node * | identifier | ) |
****************************************************************
Definition at line 991 of file PSDL_Node.cpp.
: identifier_ (identifier), catalog_inh_spec_ (0), catalog_body_ (0) { }
TAO_PSDL_Catalog::TAO_PSDL_Catalog | ( | TAO_PSDL_Node * | identifier, | |
TAO_PSDL_Node * | catalog_inh_spec, | |||
TAO_PSDL_Node * | catalog_body | |||
) |
Definition at line 998 of file PSDL_Node.cpp.
:identifier_ (identifier), catalog_inh_spec_ (catalog_inh_spec), catalog_body_ (catalog_body) { }
TAO_PSDL_Catalog::TAO_PSDL_Catalog | ( | TAO_PSDL_Node * | identifier, | |
TAO_PSDL_Node * | catalog_body | |||
) |
Definition at line 1007 of file PSDL_Node.cpp.
: identifier_ (identifier), catalog_inh_spec_ (0), catalog_body_ (catalog_body) { }
TAO_PSDL_Catalog::~TAO_PSDL_Catalog | ( | void | ) | [virtual] |
Definition at line 1015 of file PSDL_Node.cpp.
{ delete this->identifier_; if (this->catalog_inh_spec_ != 0) delete this->catalog_inh_spec_; delete this->catalog_body_; }
int TAO_PSDL_Catalog::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 1046 of file PSDL_Node.cpp.
{ return visitor->visit_catalog (this); }
TAO_PSDL_Node * TAO_PSDL_Catalog::catalog_body | ( | void | ) | const |
Definition at line 1039 of file PSDL_Node.cpp.
{ return this->catalog_body_; }
TAO_PSDL_Node * TAO_PSDL_Catalog::catalog_inh_spec | ( | void | ) | const |
Definition at line 1033 of file PSDL_Node.cpp.
{ return this->catalog_inh_spec_; }
TAO_PSDL_Node * TAO_PSDL_Catalog::identifier | ( | void | ) | const |
TAO_PSDL_Node* TAO_PSDL_Catalog::catalog_body_ [private] |
Definition at line 716 of file PSDL_Node.h.
TAO_PSDL_Node* TAO_PSDL_Catalog::catalog_inh_spec_ [private] |
Definition at line 715 of file PSDL_Node.h.
TAO_PSDL_Node* TAO_PSDL_Catalog::identifier_ [private] |
The values.
Definition at line 714 of file PSDL_Node.h.