#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Abstract_Storagetype:
Public Member Functions | |
TAO_PSDL_Abstract_Storagetype (TAO_PSDL_Node *storagetype_dcl) | |
*************************************************************** | |
virtual | ~TAO_PSDL_Abstract_Storagetype (void) |
TAO_PSDL_Node * | storagetype_dcl (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | storagetype_dcl_ |
The values. |
Definition at line 176 of file PSDL_Node.h.
TAO_PSDL_Abstract_Storagetype::TAO_PSDL_Abstract_Storagetype | ( | TAO_PSDL_Node * | storagetype_dcl | ) |
***************************************************************
Definition at line 225 of file PSDL_Node.cpp.
00226 : storagetype_dcl_ (storagetype_dcl) 00227 { 00228 }
TAO_PSDL_Abstract_Storagetype::~TAO_PSDL_Abstract_Storagetype | ( | void | ) | [virtual] |
Definition at line 230 of file PSDL_Node.cpp.
References storagetype_dcl_.
00231 { 00232 delete this->storagetype_dcl_; 00233 }
int TAO_PSDL_Abstract_Storagetype::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 242 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_abstract_storagetype().
00243 { 00244 return visitor->visit_abstract_storagetype (this); 00245 }
TAO_PSDL_Node * TAO_PSDL_Abstract_Storagetype::storagetype_dcl | ( | void | ) | const |
Get the value.
Definition at line 236 of file PSDL_Node.cpp.
References storagetype_dcl_.
00237 { 00238 return this->storagetype_dcl_; 00239 }
The values.
Definition at line 192 of file PSDL_Node.h.
Referenced by storagetype_dcl(), and ~TAO_PSDL_Abstract_Storagetype().