**************************************************************** More...
#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Const_Type (TAO_PSDL_Node *type) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Const_Type (void) |
TAO_PSDL_Node * | type (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | type_ |
The values. |
****************************************************************
Definition at line 1947 of file PSDL_Node.h.
TAO_PSDL_Const_Type::TAO_PSDL_Const_Type | ( | TAO_PSDL_Node * | type | ) |
****************************************************************
Definition at line 3023 of file PSDL_Node.cpp.
: type_ (type) { }
TAO_PSDL_Const_Type::~TAO_PSDL_Const_Type | ( | void | ) | [virtual] |
Definition at line 3028 of file PSDL_Node.cpp.
{ delete this->type_; }
int TAO_PSDL_Const_Type::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 3042 of file PSDL_Node.cpp.
{ return visitor->visit_const_type (this); }
TAO_PSDL_Node * TAO_PSDL_Const_Type::type | ( | void | ) | const |
TAO_PSDL_Node* TAO_PSDL_Const_Type::type_ [private] |