#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Storagehome:
Public Member Functions | |
TAO_PSDL_Storagehome (TAO_PSDL_Node *storagehome_header) | |
**************************************************************** | |
TAO_PSDL_Storagehome (TAO_PSDL_Node *storagehome_header, TAO_PSDL_Node *storagehome_body) | |
virtual | ~TAO_PSDL_Storagehome (void) |
TAO_PSDL_Node * | storagehome_header (void) const |
Get the value. | |
TAO_PSDL_Node * | storagehome_body (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | storagehome_header_ |
The values. | |
TAO_PSDL_Node * | storagehome_body_ |
Definition at line 1164 of file PSDL_Node.h.
|
****************************************************************
Definition at line 1715 of file PSDL_Node.cpp.
01716 : storagehome_header_ (storagehome_header), 01717 storagehome_body_ (0) 01718 { 01719 } |
|
Definition at line 1721 of file PSDL_Node.cpp.
01723 : storagehome_header_ (storagehome_header), 01724 storagehome_body_ (storagehome_body) 01725 { 01726 } |
|
Definition at line 1728 of file PSDL_Node.cpp. References storagehome_body_, and storagehome_header_.
01729 { 01730 delete this->storagehome_header_; 01731 delete this->storagehome_body_; 01732 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 1749 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_storagehome().
01750 { 01751 return visitor->visit_storagehome (this); 01752 } |
|
Definition at line 1742 of file PSDL_Node.cpp. References storagehome_body_. Referenced by TAO_PSDL_Scope_Visitor::visit_storagehome(), and Dump_Visitor::visit_storagehome().
01743 { 01744 return this->storagehome_body_; 01745 } |
|
Get the value.
Definition at line 1736 of file PSDL_Node.cpp. References storagehome_header_. Referenced by TAO_PSDL_Scope_Visitor::visit_storagehome(), and Dump_Visitor::visit_storagehome().
01737 { 01738 return this->storagehome_header_; 01739 } |
|
Definition at line 1185 of file PSDL_Node.h. Referenced by storagehome_body(), and ~TAO_PSDL_Storagehome(). |
|
The values.
Definition at line 1184 of file PSDL_Node.h. Referenced by storagehome_header(), and ~TAO_PSDL_Storagehome(). |