#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Catalog_Member:
Public Member Functions | |
TAO_PSDL_Catalog_Member (TAO_PSDL_Node *declaration) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Catalog_Member (void) |
TAO_PSDL_Node * | declaration (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | declaration_ |
The values. |
Definition at line 793 of file PSDL_Node.h.
|
****************************************************************
Definition at line 1175 of file PSDL_Node.cpp.
01176 : declaration_ (declaration) 01177 { 01178 } |
|
Definition at line 1180 of file PSDL_Node.cpp.
01181 { 01182 delete this->declaration_; 01183 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 1194 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_catalog_member().
01195 { 01196 return visitor->visit_catalog_member (this); 01197 } |
|
Get the value.
Definition at line 1187 of file PSDL_Node.cpp.
01188 { 01189 return this->declaration_; 01190 } |
|
The values.
Definition at line 809 of file PSDL_Node.h. |