#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Interface_Dcl:
Public Member Functions | |
TAO_PSDL_Interface_Dcl (TAO_PSDL_Node *interface_header) | |
**************************************************************** | |
TAO_PSDL_Interface_Dcl (TAO_PSDL_Node *interface_header, TAO_PSDL_Node *interface_body) | |
virtual | ~TAO_PSDL_Interface_Dcl (void) |
TAO_PSDL_Node * | interface_header (void) const |
Get the value. | |
TAO_PSDL_Node * | interface_body (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | interface_header_ |
The values. | |
TAO_PSDL_Node * | interface_body_ |
Definition at line 2538 of file PSDL_Node.h.
|
****************************************************************
Definition at line 3975 of file PSDL_Node.cpp.
03977 : interface_header_ (interface_header), 03978 interface_body_ (0) 03979 { 03980 } |
|
Definition at line 3982 of file PSDL_Node.cpp.
03985 : interface_header_ (interface_header), 03986 interface_body_ (interface_body) 03987 { 03988 } |
|
Definition at line 3991 of file PSDL_Node.cpp. References interface_header_.
03992 { 03993 delete this->interface_header_; 03994 03995 if (this->interface_body_ != 0) 03996 delete this->interface_body_; 03997 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 4014 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_interface_dcl().
04015 { 04016 return visitor->visit_interface_dcl (this); 04017 } |
|
Definition at line 4007 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_interface_dcl(), TAO_PSDL_Interface_Visitor::visit_interface_dcl(), and Dump_Visitor::visit_interface_dcl().
04008 { 04009 return this->interface_body_; 04010 } |
|
Get the value.
Definition at line 4001 of file PSDL_Node.cpp. References interface_header_. Referenced by TAO_PSDL_Scope_Visitor::visit_interface_dcl(), TAO_PSDL_Interface_Visitor::visit_interface_dcl(), and Dump_Visitor::visit_interface_dcl().
04002 { 04003 return this->interface_header_; 04004 } |
|
Definition at line 2560 of file PSDL_Node.h. |
|
The values.
Definition at line 2559 of file PSDL_Node.h. Referenced by interface_header(), and ~TAO_PSDL_Interface_Dcl(). |