**************************************************************** More...
#include <PSDL_Node.h>
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 843 of file PSDL_Node.cpp.
: scoped_name_ (scoped_name), abs_storagehome_name_ (0) { }
TAO_PSDL_Abstract_Storagehome_Name::TAO_PSDL_Abstract_Storagehome_Name | ( | TAO_PSDL_Node * | scoped_name, | |
TAO_PSDL_Node * | abs_storagehome_name | |||
) |
Definition at line 849 of file PSDL_Node.cpp.
: scoped_name_ (scoped_name), abs_storagehome_name_ (abs_storagehome_name) { }
TAO_PSDL_Abstract_Storagehome_Name::~TAO_PSDL_Abstract_Storagehome_Name | ( | void | ) | [virtual] |
Definition at line 856 of file PSDL_Node.cpp.
{ delete this->scoped_name_; if (this->abs_storagehome_name_ != 0) delete this->abs_storagehome_name_; }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagehome_Name::abs_storagehome_name | ( | void | ) | const |
Definition at line 871 of file PSDL_Node.cpp.
{ return this->abs_storagehome_name_; }
int TAO_PSDL_Abstract_Storagehome_Name::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 878 of file PSDL_Node.cpp.
{ return visitor->visit_abstract_storagehome_name (this); }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagehome_Name::scoped_name | ( | void | ) | const |
Definition at line 625 of file PSDL_Node.h.
The values.
Definition at line 624 of file PSDL_Node.h.