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


Public Member Functions | |
| TAO_PSDL_Abstract_Storagehome_Name (TAO_PSDL_Node *scoped_name) | |
| **************************************************************** | |
| TAO_PSDL_Abstract_Storagehome_Name (TAO_PSDL_Node *scoped_name, TAO_PSDL_Node *abs_storagehome_name) | |
| virtual | ~TAO_PSDL_Abstract_Storagehome_Name (void) |
| TAO_PSDL_Node * | scoped_name (void) const |
| Get the value. | |
| TAO_PSDL_Node * | abs_storagehome_name (void) const |
| int | accept (TAO_PSDL_Node_Visitor *visitor) |
| = The Node methods. | |
Private Attributes | |
| TAO_PSDL_Node * | scoped_name_ |
| The values. | |
| TAO_PSDL_Node * | abs_storagehome_name_ |
Definition at line 604 of file PSDL_Node.h.
| TAO_PSDL_Abstract_Storagehome_Name::TAO_PSDL_Abstract_Storagehome_Name | ( | TAO_PSDL_Node * | scoped_name | ) |
****************************************************************
Definition at line 847 of file PSDL_Node.cpp.
00848 : scoped_name_ (scoped_name), 00849 abs_storagehome_name_ (0) 00850 { 00851 }
| TAO_PSDL_Abstract_Storagehome_Name::TAO_PSDL_Abstract_Storagehome_Name | ( | TAO_PSDL_Node * | scoped_name, | |
| TAO_PSDL_Node * | abs_storagehome_name | |||
| ) |
Definition at line 853 of file PSDL_Node.cpp.
00855 : scoped_name_ (scoped_name), 00856 abs_storagehome_name_ (abs_storagehome_name) 00857 { 00858 }
| TAO_PSDL_Abstract_Storagehome_Name::~TAO_PSDL_Abstract_Storagehome_Name | ( | void | ) | [virtual] |
Definition at line 860 of file PSDL_Node.cpp.
References abs_storagehome_name_, and scoped_name_.
00861 { 00862 delete this->scoped_name_; 00863 if (this->abs_storagehome_name_ != 0) 00864 delete this->abs_storagehome_name_; 00865 }
| TAO_PSDL_Node * TAO_PSDL_Abstract_Storagehome_Name::abs_storagehome_name | ( | void | ) | const |
Definition at line 875 of file PSDL_Node.cpp.
References abs_storagehome_name_.
00876 { 00877 return this->abs_storagehome_name_; 00878 }
| int TAO_PSDL_Abstract_Storagehome_Name::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 882 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_abstract_storagehome_name().
00883 { 00884 return visitor->visit_abstract_storagehome_name (this); 00885 }
| TAO_PSDL_Node * TAO_PSDL_Abstract_Storagehome_Name::scoped_name | ( | void | ) | const |
Get the value.
Definition at line 869 of file PSDL_Node.cpp.
References scoped_name_.
00870 { 00871 return this->scoped_name_; 00872 }
Definition at line 625 of file PSDL_Node.h.
Referenced by abs_storagehome_name(), and ~TAO_PSDL_Abstract_Storagehome_Name().
The values.
Definition at line 624 of file PSDL_Node.h.
Referenced by scoped_name(), and ~TAO_PSDL_Abstract_Storagehome_Name().
1.4.7