#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Storagetype:
Public Member Functions | |
TAO_PSDL_Storagetype (TAO_PSDL_Node *declaration) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Storagetype (void) |
TAO_PSDL_Node * | declaration (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | declaration_ |
The values. |
Definition at line 838 of file PSDL_Node.h.
TAO_PSDL_Storagetype::TAO_PSDL_Storagetype | ( | TAO_PSDL_Node * | declaration | ) |
****************************************************************
Definition at line 1237 of file PSDL_Node.cpp.
01238 : declaration_ (declaration) 01239 { 01240 }
TAO_PSDL_Storagetype::~TAO_PSDL_Storagetype | ( | void | ) | [virtual] |
Definition at line 1242 of file PSDL_Node.cpp.
References declaration_.
01243 { 01244 delete this->declaration_; 01245 }
int TAO_PSDL_Storagetype::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 1256 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_storagetype().
01257 { 01258 return visitor->visit_storagetype (this); 01259 }
TAO_PSDL_Node * TAO_PSDL_Storagetype::declaration | ( | void | ) | const |
Get the value.
Definition at line 1249 of file PSDL_Node.cpp.
References declaration_.
Referenced by TAO_PSDL_Scope_Visitor::visit_storagetype(), and Dump_Visitor::visit_storagetype().
01250 { 01251 return this->declaration_; 01252 }
TAO_PSDL_Node* TAO_PSDL_Storagetype::declaration_ [private] |
The values.
Definition at line 854 of file PSDL_Node.h.
Referenced by declaration(), and ~TAO_PSDL_Storagetype().