#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.
|
****************************************************************
Definition at line 4394 of file PSDL_Node.cpp.
04397 : value_common_base_ (value_common_base), 04398 type_spec_ (type_spec) 04399 { 04400 } |
|
Definition at line 4402 of file PSDL_Node.cpp.
04403 { 04404 delete this->value_common_base_; 04405 delete this->type_spec_; 04406 } |
|
= 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 } |
|
Definition at line 4416 of file PSDL_Node.cpp.
04417 { 04418 return this->type_spec_; 04419 } |
|
Get the value.
Definition at line 4410 of file PSDL_Node.cpp.
04411 { 04412 return this->value_common_base_; 04413 } |
|
Definition at line 2822 of file PSDL_Node.h. |
|
The values.
Definition at line 2821 of file PSDL_Node.h. |