#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.
TAO_PSDL_Value_Header::TAO_PSDL_Value_Header | ( | TAO_PSDL_Node * | value_common_base, | |
TAO_PSDL_Node * | value_inheritance_spec | |||
) |
****************************************************************
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 }
TAO_PSDL_Value_Header::TAO_PSDL_Value_Header | ( | TAO_PSDL_Node * | custom, | |
TAO_PSDL_Node * | value_common_base, | |||
TAO_PSDL_Node * | value_inheritance_spec | |||
) |
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 }
TAO_PSDL_Value_Header::~TAO_PSDL_Value_Header | ( | void | ) | [virtual] |
Definition at line 4540 of file PSDL_Node.cpp.
References custom_, value_common_base_, and value_inheritance_spec_.
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 }
int TAO_PSDL_Value_Header::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= 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 }
TAO_PSDL_Node * TAO_PSDL_Value_Header::custom | ( | void | ) | const |
Get the value.
Definition at line 4552 of file PSDL_Node.cpp.
References custom_.
04553 { 04554 return this->custom_; 04555 }
TAO_PSDL_Node * TAO_PSDL_Value_Header::value_common_base | ( | void | ) | const |
Definition at line 4558 of file PSDL_Node.cpp.
References value_common_base_.
04559 { 04560 return this->value_common_base_; 04561 }
TAO_PSDL_Node * TAO_PSDL_Value_Header::value_inheritance_spec | ( | void | ) | const |
Definition at line 4564 of file PSDL_Node.cpp.
References value_inheritance_spec_.
04565 { 04566 return this->value_inheritance_spec_; 04567 }
TAO_PSDL_Node* TAO_PSDL_Value_Header::custom_ [private] |
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.
Referenced by value_common_base(), and ~TAO_PSDL_Value_Header().
Definition at line 2909 of file PSDL_Node.h.
Referenced by value_inheritance_spec(), and ~TAO_PSDL_Value_Header().