#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Catalog_Body:


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 1126 of file PSDL_Node.cpp.
01127 : catalog_member_ (0), 01128 catalog_body_ (0) 01129 { 01130 }
| TAO_PSDL_Catalog_Body::TAO_PSDL_Catalog_Body | ( | TAO_PSDL_Node * | catalog_member | ) |
Definition at line 1132 of file PSDL_Node.cpp.
01133 : catalog_member_ (catalog_member) 01134 { 01135 }
| TAO_PSDL_Catalog_Body::TAO_PSDL_Catalog_Body | ( | TAO_PSDL_Node * | catalog_member, | |
| TAO_PSDL_Node * | catalog_body | |||
| ) |
Definition at line 1137 of file PSDL_Node.cpp.
01139 : catalog_member_ (catalog_member), 01140 catalog_body_ (catalog_body) 01141 { 01142 }
| TAO_PSDL_Catalog_Body::~TAO_PSDL_Catalog_Body | ( | void | ) | [virtual] |
Definition at line 1144 of file PSDL_Node.cpp.
References catalog_body_, and catalog_member_.
01145 { 01146 if (this->catalog_member_ != 0) 01147 delete this->catalog_member_; 01148 01149 if (this->catalog_body_ != 0) 01150 delete this->catalog_body_; 01151 }
| int TAO_PSDL_Catalog_Body::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 1168 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_catalog_body().
01169 { 01170 return visitor->visit_catalog_body (this); 01171 }
| TAO_PSDL_Node * TAO_PSDL_Catalog_Body::catalog_body | ( | void | ) | const |
Definition at line 1161 of file PSDL_Node.cpp.
References catalog_body_.
01162 { 01163 return this->catalog_body_; 01164 }
| TAO_PSDL_Node * TAO_PSDL_Catalog_Body::catalog_member | ( | void | ) | const |
Get the value.
Definition at line 1155 of file PSDL_Node.cpp.
References catalog_member_.
01156 { 01157 return this->catalog_member_; 01158 }
Definition at line 788 of file PSDL_Node.h.
Referenced by catalog_body(), and ~TAO_PSDL_Catalog_Body().
The values.
Definition at line 787 of file PSDL_Node.h.
Referenced by catalog_member(), and ~TAO_PSDL_Catalog_Body().
1.4.7