**************************************************************** More...
#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Value_Box_Dcl (TAO_PSDL_Node *value_common_base, TAO_PSDL_Node *type_spec) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Value_Box_Dcl (void) |
TAO_PSDL_Node * | value_common_base (void) const |
Get the value. | |
TAO_PSDL_Node * | type_spec (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | value_common_base_ |
The values. | |
TAO_PSDL_Node * | type_spec_ |
****************************************************************
Definition at line 2803 of file PSDL_Node.h.
TAO_PSDL_Value_Box_Dcl::TAO_PSDL_Value_Box_Dcl | ( | TAO_PSDL_Node * | value_common_base, | |
TAO_PSDL_Node * | type_spec | |||
) |
****************************************************************
Definition at line 4390 of file PSDL_Node.cpp.
: value_common_base_ (value_common_base), type_spec_ (type_spec) { }
TAO_PSDL_Value_Box_Dcl::~TAO_PSDL_Value_Box_Dcl | ( | void | ) | [virtual] |
Definition at line 4398 of file PSDL_Node.cpp.
{ delete this->value_common_base_; delete this->type_spec_; }
int TAO_PSDL_Value_Box_Dcl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 4419 of file PSDL_Node.cpp.
{ return visitor->visit_value_box_dcl (this); }
TAO_PSDL_Node * TAO_PSDL_Value_Box_Dcl::type_spec | ( | void | ) | const |
Definition at line 4412 of file PSDL_Node.cpp.
{ return this->type_spec_; }
TAO_PSDL_Node * TAO_PSDL_Value_Box_Dcl::value_common_base | ( | void | ) | const |
TAO_PSDL_Node* TAO_PSDL_Value_Box_Dcl::type_spec_ [private] |
Definition at line 2822 of file PSDL_Node.h.
The values.
Definition at line 2821 of file PSDL_Node.h.