#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Value_Box_Dcl:
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 4394 of file PSDL_Node.cpp.
04397 : value_common_base_ (value_common_base), 04398 type_spec_ (type_spec) 04399 { 04400 }
TAO_PSDL_Value_Box_Dcl::~TAO_PSDL_Value_Box_Dcl | ( | void | ) | [virtual] |
Definition at line 4402 of file PSDL_Node.cpp.
References type_spec_, and value_common_base_.
04403 { 04404 delete this->value_common_base_; 04405 delete this->type_spec_; 04406 }
int TAO_PSDL_Value_Box_Dcl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 4423 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_value_box_dcl().
04424 { 04425 return visitor->visit_value_box_dcl (this); 04426 }
TAO_PSDL_Node * TAO_PSDL_Value_Box_Dcl::type_spec | ( | void | ) | const |
Definition at line 4416 of file PSDL_Node.cpp.
References type_spec_.
04417 { 04418 return this->type_spec_; 04419 }
TAO_PSDL_Node * TAO_PSDL_Value_Box_Dcl::value_common_base | ( | void | ) | const |
Get the value.
Definition at line 4410 of file PSDL_Node.cpp.
References value_common_base_.
04411 { 04412 return this->value_common_base_; 04413 }
TAO_PSDL_Node* TAO_PSDL_Value_Box_Dcl::type_spec_ [private] |
Definition at line 2822 of file PSDL_Node.h.
Referenced by type_spec(), and ~TAO_PSDL_Value_Box_Dcl().
The values.
Definition at line 2821 of file PSDL_Node.h.
Referenced by value_common_base(), and ~TAO_PSDL_Value_Box_Dcl().