#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Value_Header:
Public Member Functions | |
TAO_PSDL_Value_Header (TAO_PSDL_Node *value_common_base, TAO_PSDL_Node *value_inheritance_spec) | |
**************************************************************** | |
TAO_PSDL_Value_Header (TAO_PSDL_Node *custom, TAO_PSDL_Node *value_common_base, TAO_PSDL_Node *value_inheritance_spec) | |
virtual | ~TAO_PSDL_Value_Header (void) |
TAO_PSDL_Node * | custom (void) const |
Get the value. | |
TAO_PSDL_Node * | value_common_base (void) const |
TAO_PSDL_Node * | value_inheritance_spec (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | custom_ |
The values. | |
TAO_PSDL_Node * | value_common_base_ |
TAO_PSDL_Node * | value_inheritance_spec_ |
Definition at line 2883 of file PSDL_Node.h.
|
****************************************************************
Definition at line 4522 of file PSDL_Node.cpp.
04525 : custom_ (0), 04526 value_common_base_ (value_common_base), 04527 value_inheritance_spec_ (value_inheritance_spec) 04528 { 04529 } |
|
Definition at line 4531 of file PSDL_Node.cpp.
04534 : custom_ (custom), 04535 value_common_base_ (value_common_base), 04536 value_inheritance_spec_ (value_inheritance_spec) 04537 { 04538 } |
|
Definition at line 4540 of file PSDL_Node.cpp. References custom_.
04541 { 04542 delete this->value_common_base_; 04543 04544 if (this->custom_ != 0) 04545 delete this->custom_; 04546 04547 delete this->value_inheritance_spec_; 04548 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 4571 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_value_header().
04572 { 04573 return visitor->visit_value_header (this); 04574 } |
|
Get the value.
Definition at line 4552 of file PSDL_Node.cpp. References custom_.
04553 { 04554 return this->custom_; 04555 } |
|
Definition at line 4558 of file PSDL_Node.cpp.
04559 { 04560 return this->value_common_base_; 04561 } |
|
Definition at line 4564 of file PSDL_Node.cpp.
04565 { 04566 return this->value_inheritance_spec_; 04567 } |
|
The values.
Definition at line 2907 of file PSDL_Node.h. Referenced by custom(), and ~TAO_PSDL_Value_Header(). |
|
Definition at line 2908 of file PSDL_Node.h. |
|
Definition at line 2909 of file PSDL_Node.h. |