#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Storagetype_Name:
Public Member Functions | |
TAO_PSDL_Storagetype_Name (TAO_PSDL_Node *scoped_name) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Storagetype_Name (void) |
TAO_PSDL_Node * | scoped_name (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | scoped_name_ |
The values. |
Definition at line 1008 of file PSDL_Node.h.
TAO_PSDL_Storagetype_Name::TAO_PSDL_Storagetype_Name | ( | TAO_PSDL_Node * | scoped_name | ) |
****************************************************************
Definition at line 1503 of file PSDL_Node.cpp.
01504 : scoped_name_ (scoped_name) 01505 { 01506 }
TAO_PSDL_Storagetype_Name::~TAO_PSDL_Storagetype_Name | ( | void | ) | [virtual] |
Definition at line 1508 of file PSDL_Node.cpp.
References scoped_name_.
01509 { 01510 delete this->scoped_name_; 01511 }
int TAO_PSDL_Storagetype_Name::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 1522 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_storagetype_name().
01523 { 01524 return visitor->visit_storagetype_name (this); 01525 }
TAO_PSDL_Node * TAO_PSDL_Storagetype_Name::scoped_name | ( | void | ) | const |
Get the value.
Definition at line 1515 of file PSDL_Node.cpp.
References scoped_name_.
Referenced by TAO_PSDL_Scope_Visitor::visit_storagetype_name(), and Dump_Visitor::visit_storagetype_name().
01516 { 01517 return this->scoped_name_; 01518 }
The values.
Definition at line 1024 of file PSDL_Node.h.
Referenced by scoped_name(), and ~TAO_PSDL_Storagetype_Name().