**************************************************************** More...
#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Catalog_Body () | |
**************************************************************** | |
TAO_PSDL_Catalog_Body (TAO_PSDL_Node *catalog_member) | |
TAO_PSDL_Catalog_Body (TAO_PSDL_Node *catalog_member, TAO_PSDL_Node *catalog_body) | |
virtual | ~TAO_PSDL_Catalog_Body (void) |
TAO_PSDL_Node * | catalog_member (void) const |
Get the value. | |
TAO_PSDL_Node * | catalog_body (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | catalog_member_ |
The values. | |
TAO_PSDL_Node * | catalog_body_ |
****************************************************************
Definition at line 767 of file PSDL_Node.h.
TAO_PSDL_Catalog_Body::TAO_PSDL_Catalog_Body | ( | ) |
****************************************************************
Definition at line 1122 of file PSDL_Node.cpp.
: catalog_member_ (0), catalog_body_ (0) { }
TAO_PSDL_Catalog_Body::TAO_PSDL_Catalog_Body | ( | TAO_PSDL_Node * | catalog_member | ) |
Definition at line 1128 of file PSDL_Node.cpp.
: catalog_member_ (catalog_member) { }
TAO_PSDL_Catalog_Body::TAO_PSDL_Catalog_Body | ( | TAO_PSDL_Node * | catalog_member, | |
TAO_PSDL_Node * | catalog_body | |||
) |
Definition at line 1133 of file PSDL_Node.cpp.
: catalog_member_ (catalog_member), catalog_body_ (catalog_body) { }
TAO_PSDL_Catalog_Body::~TAO_PSDL_Catalog_Body | ( | void | ) | [virtual] |
Definition at line 1140 of file PSDL_Node.cpp.
{ if (this->catalog_member_ != 0) delete this->catalog_member_; if (this->catalog_body_ != 0) delete this->catalog_body_; }
int TAO_PSDL_Catalog_Body::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 1164 of file PSDL_Node.cpp.
{ return visitor->visit_catalog_body (this); }
TAO_PSDL_Node * TAO_PSDL_Catalog_Body::catalog_body | ( | void | ) | const |
Definition at line 1157 of file PSDL_Node.cpp.
{ return this->catalog_body_; }
TAO_PSDL_Node * TAO_PSDL_Catalog_Body::catalog_member | ( | void | ) | const |
Definition at line 788 of file PSDL_Node.h.
The values.
Definition at line 787 of file PSDL_Node.h.