#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Psdl_Concrete_State_Type:
Public Member Functions | |
TAO_PSDL_Psdl_Concrete_State_Type (TAO_PSDL_Node *storagetype) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Psdl_Concrete_State_Type (void) |
TAO_PSDL_Node * | storagetype (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | storagetype_ |
The values. |
Definition at line 1122 of file PSDL_Node.h.
TAO_PSDL_Psdl_Concrete_State_Type::TAO_PSDL_Psdl_Concrete_State_Type | ( | TAO_PSDL_Node * | storagetype | ) |
****************************************************************
Definition at line 1664 of file PSDL_Node.cpp.
01665 : storagetype_ (storagetype) 01666 { 01667 }
TAO_PSDL_Psdl_Concrete_State_Type::~TAO_PSDL_Psdl_Concrete_State_Type | ( | void | ) | [virtual] |
Definition at line 1669 of file PSDL_Node.cpp.
References storagetype_.
01670 { 01671 delete this->storagetype_; 01672 }
int TAO_PSDL_Psdl_Concrete_State_Type::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 1683 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_psdl_concrete_state_type().
01684 { 01685 return visitor->visit_psdl_concrete_state_type (this); 01686 }
TAO_PSDL_Node * TAO_PSDL_Psdl_Concrete_State_Type::storagetype | ( | void | ) | const |
Get the value.
Definition at line 1676 of file PSDL_Node.cpp.
References storagetype_.
01677 { 01678 return this->storagetype_; 01679 }
The values.
Definition at line 1138 of file PSDL_Node.h.
Referenced by storagetype(), and ~TAO_PSDL_Psdl_Concrete_State_Type().