#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Interface_Inheritance_Spec:
Public Member Functions | |
TAO_PSDL_Interface_Inheritance_Spec (TAO_PSDL_Node *interface_name) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Interface_Inheritance_Spec (void) |
TAO_PSDL_Node * | interface_name (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | interface_name_ |
The values. |
Definition at line 2662 of file PSDL_Node.h.
TAO_PSDL_Interface_Inheritance_Spec::TAO_PSDL_Interface_Inheritance_Spec | ( | TAO_PSDL_Node * | interface_name | ) |
****************************************************************
Definition at line 4176 of file PSDL_Node.cpp.
04178 : interface_name_ (interface_name) 04179 { 04180 }
TAO_PSDL_Interface_Inheritance_Spec::~TAO_PSDL_Interface_Inheritance_Spec | ( | void | ) | [virtual] |
Definition at line 4182 of file PSDL_Node.cpp.
References interface_name_.
04183 { 04184 if (this->interface_name_ != 0) 04185 delete this->interface_name_; 04186 }
int TAO_PSDL_Interface_Inheritance_Spec::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 4198 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_interface_inheritance_spec().
04199 { 04200 return visitor->visit_interface_inheritance_spec (this); 04201 }
TAO_PSDL_Node * TAO_PSDL_Interface_Inheritance_Spec::interface_name | ( | void | ) | const |
Get the value.
Definition at line 4190 of file PSDL_Node.cpp.
References interface_name_.
Referenced by TAO_PSDL_Scope_Visitor::visit_interface_inheritance_spec(), and Dump_Visitor::visit_interface_inheritance_spec().
04191 { 04192 return this->interface_name_; 04193 }
The values.
Definition at line 2679 of file PSDL_Node.h.
Referenced by interface_name(), and ~TAO_PSDL_Interface_Inheritance_Spec().