**************************************************************** More...
#include <PSDL_Node.h>
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.
TAO_PSDL_Interface_Body::TAO_PSDL_Interface_Body | ( | TAO_PSDL_Node * | export_variable | ) |
****************************************************************
Definition at line 3926 of file PSDL_Node.cpp.
: export_variable_ (export_variable), interface_body_ (0) { }
TAO_PSDL_Interface_Body::TAO_PSDL_Interface_Body | ( | TAO_PSDL_Node * | export_variable, | |
TAO_PSDL_Node * | interface_body | |||
) |
Definition at line 3932 of file PSDL_Node.cpp.
: export_variable_ (export_variable), interface_body_ (interface_body) { }
TAO_PSDL_Interface_Body::~TAO_PSDL_Interface_Body | ( | void | ) | [virtual] |
Definition at line 3940 of file PSDL_Node.cpp.
{ delete this->export_variable_; if (this->interface_body_ != 0) delete this->interface_body_; }
int TAO_PSDL_Interface_Body::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 3964 of file PSDL_Node.cpp.
{ return visitor->visit_interface_body (this); }
TAO_PSDL_Node * TAO_PSDL_Interface_Body::export_variable | ( | void | ) | const |
TAO_PSDL_Node * TAO_PSDL_Interface_Body::interface_body | ( | void | ) | const |
Definition at line 3956 of file PSDL_Node.cpp.
{ return this->interface_body_; }
The values.
Definition at line 2532 of file PSDL_Node.h.
Definition at line 2533 of file PSDL_Node.h.