**************************************************************** More...
#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Value_Inheritance_Spec (TAO_PSDL_Node *interface_name) | |
**************************************************************** | |
TAO_PSDL_Value_Inheritance_Spec (TAO_PSDL_Node *value_name, TAO_PSDL_Node *interface_name) | |
TAO_PSDL_Value_Inheritance_Spec (TAO_PSDL_Node *truncatable, TAO_PSDL_Node *value_name, TAO_PSDL_Node *interface_name) | |
virtual | ~TAO_PSDL_Value_Inheritance_Spec (void) |
TAO_PSDL_Node * | truncatable (void) const |
Get the value. | |
TAO_PSDL_Node * | value_name (void) const |
TAO_PSDL_Node * | interface_name (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | truncatable_ |
The values. | |
TAO_PSDL_Node * | value_name_ |
TAO_PSDL_Node * | interface_name_ |
****************************************************************
Definition at line 2914 of file PSDL_Node.h.
TAO_PSDL_Value_Inheritance_Spec::TAO_PSDL_Value_Inheritance_Spec | ( | TAO_PSDL_Node * | interface_name | ) |
****************************************************************
Definition at line 4574 of file PSDL_Node.cpp.
: truncatable_ (0), value_name_ (0), interface_name_ (interface_name) { }
TAO_PSDL_Value_Inheritance_Spec::TAO_PSDL_Value_Inheritance_Spec | ( | TAO_PSDL_Node * | value_name, | |
TAO_PSDL_Node * | interface_name | |||
) |
Definition at line 4582 of file PSDL_Node.cpp.
: truncatable_ (0), value_name_ (value_name), interface_name_ (interface_name) { }
TAO_PSDL_Value_Inheritance_Spec::TAO_PSDL_Value_Inheritance_Spec | ( | TAO_PSDL_Node * | truncatable, | |
TAO_PSDL_Node * | value_name, | |||
TAO_PSDL_Node * | interface_name | |||
) |
Definition at line 4591 of file PSDL_Node.cpp.
: truncatable_ (truncatable), value_name_ (value_name), interface_name_ (interface_name) { }
TAO_PSDL_Value_Inheritance_Spec::~TAO_PSDL_Value_Inheritance_Spec | ( | void | ) | [virtual] |
Definition at line 4601 of file PSDL_Node.cpp.
{ if (this->truncatable_ != 0) delete this->truncatable_; delete this->interface_name_; if (this->value_name_ != 0) delete this->value_name_; }
int TAO_PSDL_Value_Inheritance_Spec::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 4633 of file PSDL_Node.cpp.
{ return visitor->visit_value_inheritance_spec (this); }
TAO_PSDL_Node * TAO_PSDL_Value_Inheritance_Spec::interface_name | ( | void | ) | const |
Definition at line 4626 of file PSDL_Node.cpp.
{ return this->interface_name_; }
TAO_PSDL_Node * TAO_PSDL_Value_Inheritance_Spec::truncatable | ( | void | ) | const |
TAO_PSDL_Node * TAO_PSDL_Value_Inheritance_Spec::value_name | ( | void | ) | const |
Definition at line 4620 of file PSDL_Node.cpp.
{ return this->value_name_; }
Definition at line 2953 of file PSDL_Node.h.
The values.
Definition at line 2951 of file PSDL_Node.h.
Definition at line 2952 of file PSDL_Node.h.