#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Interface_Body:
Public Member Functions | |
TAO_PSDL_Interface_Body (TAO_PSDL_Node *export_variable) | |
**************************************************************** | |
TAO_PSDL_Interface_Body (TAO_PSDL_Node *export_variable, TAO_PSDL_Node *interface_body) | |
virtual | ~TAO_PSDL_Interface_Body (void) |
TAO_PSDL_Node * | export_variable (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 * | export_variable_ |
The values. | |
TAO_PSDL_Node * | interface_body_ |
Definition at line 2512 of file PSDL_Node.h.
|
****************************************************************
Definition at line 3930 of file PSDL_Node.cpp.
03931 : export_variable_ (export_variable), 03932 interface_body_ (0) 03933 { 03934 } |
|
Definition at line 3936 of file PSDL_Node.cpp.
03939 : export_variable_ (export_variable), 03940 interface_body_ (interface_body) 03941 { 03942 } |
|
Definition at line 3944 of file PSDL_Node.cpp. References export_variable_, and interface_body_.
03945 { 03946 delete this->export_variable_; 03947 03948 if (this->interface_body_ != 0) 03949 delete this->interface_body_; 03950 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 3968 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_interface_body().
03969 { 03970 return visitor->visit_interface_body (this); 03971 } |
|
Get the value.
Definition at line 3954 of file PSDL_Node.cpp. References export_variable_. Referenced by TAO_PSDL_Scope_Visitor::visit_interface_body(), TAO_PSDL_Node_Visitor::visit_interface_body(), and Dump_Visitor::visit_interface_body().
03955 { 03956 return this->export_variable_; 03957 } |
|
Definition at line 3960 of file PSDL_Node.cpp. References interface_body_. Referenced by TAO_PSDL_Scope_Visitor::visit_interface_body(), TAO_PSDL_Node_Visitor::visit_interface_body(), and Dump_Visitor::visit_interface_body().
03961 { 03962 return this->interface_body_; 03963 } |
|
The values.
Definition at line 2532 of file PSDL_Node.h. Referenced by export_variable(), and ~TAO_PSDL_Interface_Body(). |
|
Definition at line 2533 of file PSDL_Node.h. Referenced by interface_body(), and ~TAO_PSDL_Interface_Body(). |