#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Interface:
Public Member Functions | |
TAO_PSDL_Interface (TAO_PSDL_Node *type_of_dcl) | |
*************************************************************** | |
virtual | ~TAO_PSDL_Interface (void) |
TAO_PSDL_Node * | type_of_dcl (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | type_of_dcl_ |
The values. |
Definition at line 2491 of file PSDL_Node.h.
|
***************************************************************
Definition at line 3904 of file PSDL_Node.cpp.
03905 : type_of_dcl_ (type_of_dcl) 03906 { 03907 } |
|
Definition at line 3909 of file PSDL_Node.cpp. References type_of_dcl_.
03910 { 03911 delete this->type_of_dcl_; 03912 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 3923 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_interface().
03924 { 03925 return visitor->visit_interface (this); 03926 } |
|
Get the value.
Definition at line 3916 of file PSDL_Node.cpp. References type_of_dcl_. Referenced by TAO_PSDL_Scope_Visitor::visit_interface(), TAO_PSDL_Node_Visitor::visit_interface(), and Dump_Visitor::visit_interface().
03917 { 03918 return this->type_of_dcl_; 03919 } |
|
The values.
Definition at line 2507 of file PSDL_Node.h. Referenced by type_of_dcl(), and ~TAO_PSDL_Interface(). |