#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Abstract_Storagehome_Header:
Public Member Functions | |
TAO_PSDL_Abstract_Storagehome_Header (TAO_PSDL_Node *identifier, TAO_PSDL_Node *abs_storagetype_name) | |
**************************************************************** | |
TAO_PSDL_Abstract_Storagehome_Header (TAO_PSDL_Node *identifier, TAO_PSDL_Node *abs_storagetype_name, TAO_PSDL_Node *abs_storagehome_inh_spec) | |
virtual | ~TAO_PSDL_Abstract_Storagehome_Header (void) |
TAO_PSDL_Node * | identifier (void) const |
Get the value. | |
TAO_PSDL_Node * | abs_storagetype_name (void) const |
TAO_PSDL_Node * | abs_storagehome_inh_spec (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | identifier_ |
The values. | |
TAO_PSDL_Node * | abs_storagetype_name_ |
TAO_PSDL_Node * | abs_storagehome_inh_spec_ |
Definition at line 503 of file PSDL_Node.h.
TAO_PSDL_Abstract_Storagehome_Header::TAO_PSDL_Abstract_Storagehome_Header | ( | TAO_PSDL_Node * | identifier, | |
TAO_PSDL_Node * | abs_storagetype_name | |||
) |
****************************************************************
Definition at line 695 of file PSDL_Node.cpp.
00697 : identifier_ (identifier), 00698 abs_storagetype_name_ (abs_storagetype_name), 00699 abs_storagehome_inh_spec_ (0) 00700 { 00701 }
TAO_PSDL_Abstract_Storagehome_Header::TAO_PSDL_Abstract_Storagehome_Header | ( | TAO_PSDL_Node * | identifier, | |
TAO_PSDL_Node * | abs_storagetype_name, | |||
TAO_PSDL_Node * | abs_storagehome_inh_spec | |||
) |
Definition at line 703 of file PSDL_Node.cpp.
00706 : identifier_ (identifier), 00707 abs_storagetype_name_ (abs_storagetype_name), 00708 abs_storagehome_inh_spec_ (abs_storagehome_inh_spec) 00709 { 00710 }
TAO_PSDL_Abstract_Storagehome_Header::~TAO_PSDL_Abstract_Storagehome_Header | ( | void | ) | [virtual] |
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagehome_Header::abs_storagehome_inh_spec | ( | void | ) | const |
Definition at line 730 of file PSDL_Node.cpp.
References abs_storagehome_inh_spec_.
00731 { 00732 return this->abs_storagehome_inh_spec_; 00733 }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagehome_Header::abs_storagetype_name | ( | void | ) | const |
Definition at line 724 of file PSDL_Node.cpp.
References abs_storagetype_name_.
00725 { 00726 return this->abs_storagetype_name_; 00727 }
int TAO_PSDL_Abstract_Storagehome_Header::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 738 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_abstract_storagehome_header().
00739 { 00740 return visitor->visit_abstract_storagehome_header (this); 00741 }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagehome_Header::identifier | ( | void | ) | const |
Get the value.
Definition at line 718 of file PSDL_Node.cpp.
References identifier_.
00719 { 00720 return this->identifier_; 00721 }