**************************************************************** More...
#include <PSDL_Node.h>
Public Member Functions | |
TAO_PSDL_Export_Dcl (TAO_PSDL_Node *type_of_export_one) | |
**************************************************************** | |
TAO_PSDL_Export_Dcl (TAO_PSDL_Node *type_of_export_one, TAO_PSDL_Node *type_of_export_two) | |
virtual | ~TAO_PSDL_Export_Dcl (void) |
TAO_PSDL_Node * | type_of_export_one (void) const |
Get the value. | |
TAO_PSDL_Node * | type_of_export_two (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | type_of_export_one_ |
The values. | |
TAO_PSDL_Node * | type_of_export_two_ |
****************************************************************
Definition at line 2635 of file PSDL_Node.h.
TAO_PSDL_Export_Dcl::TAO_PSDL_Export_Dcl | ( | TAO_PSDL_Node * | type_of_export_one | ) |
****************************************************************
Definition at line 4129 of file PSDL_Node.cpp.
: type_of_export_one_ (type_of_export_one), type_of_export_two_ (0) { }
TAO_PSDL_Export_Dcl::TAO_PSDL_Export_Dcl | ( | TAO_PSDL_Node * | type_of_export_one, | |
TAO_PSDL_Node * | type_of_export_two | |||
) |
Definition at line 4135 of file PSDL_Node.cpp.
: type_of_export_one_ (type_of_export_one), type_of_export_two_ (type_of_export_two) { }
TAO_PSDL_Export_Dcl::~TAO_PSDL_Export_Dcl | ( | void | ) | [virtual] |
Definition at line 4142 of file PSDL_Node.cpp.
{ delete this->type_of_export_one_; if (this->type_of_export_two_ != 0) delete this->type_of_export_two_; }
int TAO_PSDL_Export_Dcl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 4165 of file PSDL_Node.cpp.
{ return visitor->visit_export_dcl (this); }
TAO_PSDL_Node * TAO_PSDL_Export_Dcl::type_of_export_one | ( | void | ) | const |
TAO_PSDL_Node * TAO_PSDL_Export_Dcl::type_of_export_two | ( | void | ) | const |
Definition at line 4158 of file PSDL_Node.cpp.
{ return this->type_of_export_two_; }
The values.
Definition at line 2656 of file PSDL_Node.h.
Definition at line 2657 of file PSDL_Node.h.