**************************************************************** More...
#include <PSDL_Node.h>
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 4518 of file PSDL_Node.cpp.
: custom_ (0), value_common_base_ (value_common_base), value_inheritance_spec_ (value_inheritance_spec) { }
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 4527 of file PSDL_Node.cpp.
: custom_ (custom), value_common_base_ (value_common_base), value_inheritance_spec_ (value_inheritance_spec) { }
TAO_PSDL_Value_Header::~TAO_PSDL_Value_Header | ( | void | ) | [virtual] |
Definition at line 4536 of file PSDL_Node.cpp.
{ delete this->value_common_base_; if (this->custom_ != 0) delete this->custom_; delete this->value_inheritance_spec_; }
int TAO_PSDL_Value_Header::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 4567 of file PSDL_Node.cpp.
{ return visitor->visit_value_header (this); }
TAO_PSDL_Node * TAO_PSDL_Value_Header::custom | ( | void | ) | const |
TAO_PSDL_Node * TAO_PSDL_Value_Header::value_common_base | ( | void | ) | const |
Definition at line 4554 of file PSDL_Node.cpp.
{ return this->value_common_base_; }
TAO_PSDL_Node * TAO_PSDL_Value_Header::value_inheritance_spec | ( | void | ) | const |
Definition at line 4560 of file PSDL_Node.cpp.
{ return this->value_inheritance_spec_; }
TAO_PSDL_Node* TAO_PSDL_Value_Header::custom_ [private] |
The values.
Definition at line 2907 of file PSDL_Node.h.
Definition at line 2908 of file PSDL_Node.h.
Definition at line 2909 of file PSDL_Node.h.