#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.
|
****************************************************************
Definition at line 4176 of file PSDL_Node.cpp.
04178 : interface_name_ (interface_name) 04179 { 04180 } |
|
Definition at line 4182 of file PSDL_Node.cpp.
04183 { 04184 if (this->interface_name_ != 0) 04185 delete this->interface_name_; 04186 } |
|
= 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 } |
|
Get the value.
Definition at line 4190 of file PSDL_Node.cpp. 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. |