#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Value_Abs_Dcl:
Public Member Functions | |
TAO_PSDL_Value_Abs_Dcl (TAO_PSDL_Node *value_common_base, TAO_PSDL_Node *export_variable) | |
**************************************************************** | |
TAO_PSDL_Value_Abs_Dcl (TAO_PSDL_Node *value_common_base, TAO_PSDL_Node *value_inheritance_spec, TAO_PSDL_Node *export_variable) | |
virtual | ~TAO_PSDL_Value_Abs_Dcl (void) |
TAO_PSDL_Node * | value_common_base (void) const |
Get the value. | |
TAO_PSDL_Node * | value_inheritance_spec (void) const |
TAO_PSDL_Node * | export_variable (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 * | value_inheritance_spec_ |
TAO_PSDL_Node * | export_variable_ |
Definition at line 2827 of file PSDL_Node.h.
|
****************************************************************
Definition at line 4430 of file PSDL_Node.cpp.
04433 : value_common_base_ (value_common_base), 04434 value_inheritance_spec_ (0), 04435 export_variable_ (export_variable) 04436 { 04437 } |
|
Definition at line 4439 of file PSDL_Node.cpp.
04443 : value_common_base_ (value_common_base), 04444 value_inheritance_spec_ (value_inheritance_spec), 04445 export_variable_ (export_variable) 04446 { 04447 } |
|
Definition at line 4449 of file PSDL_Node.cpp. References value_inheritance_spec_.
04450 { 04451 delete this->value_common_base_; 04452 delete this->export_variable_; 04453 04454 if (this->value_inheritance_spec_ != 0) 04455 delete this->value_inheritance_spec_; 04456 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 4479 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_value_abs_dcl().
04480 { 04481 return visitor->visit_value_abs_dcl (this); 04482 } |
|
Definition at line 4466 of file PSDL_Node.cpp.
04467 { 04468 return this->export_variable_; 04469 } |
|
Get the value.
Definition at line 4460 of file PSDL_Node.cpp.
04461 { 04462 return this->value_common_base_; 04463 } |
|
Definition at line 4472 of file PSDL_Node.cpp. References value_inheritance_spec_.
04473 { 04474 return this->value_inheritance_spec_; 04475 } |
|
Definition at line 2853 of file PSDL_Node.h. |
|
The values.
Definition at line 2851 of file PSDL_Node.h. |
|
Definition at line 2852 of file PSDL_Node.h. Referenced by value_inheritance_spec(), and ~TAO_PSDL_Value_Abs_Dcl(). |