#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Abstract_Storagehome_Dcl:
Public Member Functions | |
TAO_PSDL_Abstract_Storagehome_Dcl (TAO_PSDL_Node *abs_storagehome_header) | |
**************************************************************** | |
TAO_PSDL_Abstract_Storagehome_Dcl (TAO_PSDL_Node *abs_storagehome_header, TAO_PSDL_Node *abs_storagehome_body) | |
virtual | ~TAO_PSDL_Abstract_Storagehome_Dcl (void) |
TAO_PSDL_Node * | abs_storagehome_header (void) const |
Get the value. | |
TAO_PSDL_Node * | abs_storagehome_body (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | abs_storagehome_header_ |
The values. | |
TAO_PSDL_Node * | abs_storagehome_body_ |
Definition at line 477 of file PSDL_Node.h.
|
****************************************************************
Definition at line 653 of file PSDL_Node.cpp.
00654 : abs_storagehome_header_ (abs_storagehome_header), 00655 abs_storagehome_body_ (0) 00656 { 00657 } |
|
Definition at line 659 of file PSDL_Node.cpp.
00661 : abs_storagehome_header_ (abs_storagehome_header), 00662 abs_storagehome_body_ (abs_storagehome_body) 00663 { 00664 } |
|
Definition at line 666 of file PSDL_Node.cpp. References abs_storagehome_body_, and abs_storagehome_header_.
00667 { 00668 delete this->abs_storagehome_header_; 00669 delete this->abs_storagehome_body_; 00670 } |
|
Definition at line 681 of file PSDL_Node.cpp. References abs_storagehome_body_.
00682 { 00683 return this->abs_storagehome_body_; 00684 } |
|
Get the value.
Definition at line 675 of file PSDL_Node.cpp. References abs_storagehome_header_.
00676 { 00677 return this->abs_storagehome_header_; 00678 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 688 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_abstract_storagehome_dcl().
00689 { 00690 return visitor->visit_abstract_storagehome_dcl (this); 00691 } |
|
Definition at line 498 of file PSDL_Node.h. Referenced by abs_storagehome_body(), and ~TAO_PSDL_Abstract_Storagehome_Dcl(). |
|
The values.
Definition at line 497 of file PSDL_Node.h. Referenced by abs_storagehome_header(), and ~TAO_PSDL_Abstract_Storagehome_Dcl(). |