#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Interface_Name:
Public Member Functions | |
TAO_PSDL_Interface_Name (TAO_PSDL_Node *scoped_name) | |
**************************************************************** | |
TAO_PSDL_Interface_Name (TAO_PSDL_Node *scoped_name, TAO_PSDL_Node *interface_name) | |
virtual | ~TAO_PSDL_Interface_Name (void) |
TAO_PSDL_Node * | scoped_name (void) const |
Get the value. | |
TAO_PSDL_Node * | interface_name (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | scoped_name_ |
The values. | |
TAO_PSDL_Node * | interface_name_ |
Definition at line 2684 of file PSDL_Node.h.
|
****************************************************************
Definition at line 4205 of file PSDL_Node.cpp.
04207 : scoped_name_ (scoped_name), 04208 interface_name_ (0) 04209 { 04210 } |
|
Definition at line 4212 of file PSDL_Node.cpp.
04215 : scoped_name_ (scoped_name), 04216 interface_name_ (interface_name) 04217 { 04218 } |
|
Definition at line 4220 of file PSDL_Node.cpp.
04221 { 04222 delete this->scoped_name_; 04223 04224 if (this->interface_name_ != 0) 04225 delete this->interface_name_; 04226 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 4243 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_interface_name().
04244 { 04245 return visitor->visit_interface_name (this); 04246 } |
|
Definition at line 4236 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_interface_name(), and Dump_Visitor::visit_interface_name().
04237 { 04238 return this->interface_name_; 04239 } |
|
Get the value.
Definition at line 4230 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_interface_name(), and Dump_Visitor::visit_interface_name().
04231 { 04232 return this->scoped_name_; 04233 } |
|
Definition at line 2705 of file PSDL_Node.h. |
|
The values.
Definition at line 2704 of file PSDL_Node.h. |