#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Value:
Public Member Functions | |
TAO_PSDL_Value (TAO_PSDL_Node *type_of_value_dcl) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Value (void) |
TAO_PSDL_Node * | type_of_value_dcl (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | type_of_value_dcl_ |
The values. |
Definition at line 2736 of file PSDL_Node.h.
TAO_PSDL_Value::TAO_PSDL_Value | ( | TAO_PSDL_Node * | type_of_value_dcl | ) |
****************************************************************
Definition at line 4297 of file PSDL_Node.cpp.
04298 : type_of_value_dcl_ (type_of_value_dcl) 04299 { 04300 }
TAO_PSDL_Value::~TAO_PSDL_Value | ( | void | ) | [virtual] |
Definition at line 4302 of file PSDL_Node.cpp.
References type_of_value_dcl_.
04303 { 04304 delete this->type_of_value_dcl_; 04305 }
int TAO_PSDL_Value::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 4316 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_value().
04317 { 04318 return visitor->visit_value (this); 04319 }
TAO_PSDL_Node * TAO_PSDL_Value::type_of_value_dcl | ( | void | ) | const |
Get the value.
Definition at line 4309 of file PSDL_Node.cpp.
References type_of_value_dcl_.
04310 { 04311 return this->type_of_value_dcl_; 04312 }
TAO_PSDL_Node* TAO_PSDL_Value::type_of_value_dcl_ [private] |
The values.
Definition at line 2752 of file PSDL_Node.h.
Referenced by type_of_value_dcl(), and ~TAO_PSDL_Value().