#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Abstract_Storagetype_Name (TAO_PSDL_Node *scoped_name) | |
**************************************************************** | |
TAO_PSDL_Abstract_Storagetype_Name (TAO_PSDL_Node *scoped_name, TAO_PSDL_Node *abs_storagetype_name) | |
virtual | ~TAO_PSDL_Abstract_Storagetype_Name (void) |
TAO_PSDL_Node * | scoped_name (void) const |
Get the value. | |
TAO_PSDL_Node * | abs_storagetype_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_storagetype_name_ |
Definition at line 334 of file PSDL_Node.h.
TAO_PSDL_Abstract_Storagetype_Name::TAO_PSDL_Abstract_Storagetype_Name | ( | TAO_PSDL_Node * | scoped_name | ) |
****************************************************************
Definition at line 438 of file PSDL_Node.cpp.
: scoped_name_ (scoped_name), abs_storagetype_name_ (0) { }
TAO_PSDL_Abstract_Storagetype_Name::TAO_PSDL_Abstract_Storagetype_Name | ( | TAO_PSDL_Node * | scoped_name, | |
TAO_PSDL_Node * | abs_storagetype_name | |||
) |
Definition at line 444 of file PSDL_Node.cpp.
: scoped_name_ (scoped_name), abs_storagetype_name_ (abs_storagetype_name) { }
TAO_PSDL_Abstract_Storagetype_Name::~TAO_PSDL_Abstract_Storagetype_Name | ( | void | ) | [virtual] |
Definition at line 452 of file PSDL_Node.cpp.
{ delete this->scoped_name_; if (this->abs_storagetype_name_ != 0) delete this->abs_storagetype_name_; }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagetype_Name::abs_storagetype_name | ( | void | ) | const |
Definition at line 466 of file PSDL_Node.cpp.
{ return this->abs_storagetype_name_; }
int TAO_PSDL_Abstract_Storagetype_Name::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 472 of file PSDL_Node.cpp.
{ return visitor->visit_abstract_storagetype_name (this); }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagetype_Name::scoped_name | ( | void | ) | const |
Definition at line 353 of file PSDL_Node.h.
The values.
Definition at line 352 of file PSDL_Node.h.