#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Value_Forward_Dcl:
Public Member Functions | |
TAO_PSDL_Value_Forward_Dcl (TAO_PSDL_Node *value_common_base) | |
**************************************************************** | |
TAO_PSDL_Value_Forward_Dcl (TAO_PSDL_Node *abstract, TAO_PSDL_Node *value_common_base) | |
virtual | ~TAO_PSDL_Value_Forward_Dcl (void) |
TAO_PSDL_Node * | value_common_base (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Public Attributes | |
TAO_PSDL_Node *abstract void | const |
Get the value. | |
Private Attributes | |
TAO_PSDL_Node * | value_common_base_ |
The values. | |
TAO_PSDL_Node * | abstract_ |
Definition at line 2778 of file PSDL_Node.h.
|
****************************************************************
Definition at line 4349 of file PSDL_Node.cpp.
04351 : value_common_base_ (value_common_base), 04352 abstract_ (0) 04353 { 04354 } |
|
Definition at line 4356 of file PSDL_Node.cpp.
04359 : value_common_base_ (value_common_base), 04360 abstract_ (abstract) 04361 { 04362 } |
|
Definition at line 4364 of file PSDL_Node.cpp. References abstract_, and value_common_base_.
04365 { 04366 delete this->value_common_base_; 04367 04368 if (this->abstract_ != 0) 04369 delete this->abstract_; 04370 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 4387 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_value_forward_dcl().
04388 { 04389 return visitor->visit_value_forward_dcl (this); 04390 } |
|
Get the value.
Definition at line 4374 of file PSDL_Node.cpp. References value_common_base_.
04375 { 04376 return this->value_common_base_; 04377 } |
|
Definition at line 2798 of file PSDL_Node.h. Referenced by ~TAO_PSDL_Value_Forward_Dcl(). |
|
Get the value.
Definition at line 2788 of file PSDL_Node.h. |
|
The values.
Definition at line 2797 of file PSDL_Node.h. Referenced by value_common_base(), and ~TAO_PSDL_Value_Forward_Dcl(). |