#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Export_Dcl:


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 4133 of file PSDL_Node.cpp.
04134 : type_of_export_one_ (type_of_export_one), 04135 type_of_export_two_ (0) 04136 { 04137 }
| 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 4139 of file PSDL_Node.cpp.
04141 : type_of_export_one_ (type_of_export_one), 04142 type_of_export_two_ (type_of_export_two) 04143 { 04144 }
| TAO_PSDL_Export_Dcl::~TAO_PSDL_Export_Dcl | ( | void | ) | [virtual] |
Definition at line 4146 of file PSDL_Node.cpp.
References type_of_export_one_, and type_of_export_two_.
04147 { 04148 delete this->type_of_export_one_; 04149 04150 if (this->type_of_export_two_ != 0) 04151 delete this->type_of_export_two_; 04152 }
| int TAO_PSDL_Export_Dcl::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 4169 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_export_dcl().
04170 { 04171 return visitor->visit_export_dcl (this); 04172 }
| TAO_PSDL_Node * TAO_PSDL_Export_Dcl::type_of_export_one | ( | void | ) | const |
Get the value.
Definition at line 4156 of file PSDL_Node.cpp.
References type_of_export_one_.
Referenced by TAO_PSDL_Scope_Visitor::visit_export_dcl(), TAO_PSDL_Node_Visitor::visit_export_dcl(), and Dump_Visitor::visit_export_dcl().
04157 { 04158 return this->type_of_export_one_; 04159 }
| TAO_PSDL_Node * TAO_PSDL_Export_Dcl::type_of_export_two | ( | void | ) | const |
Definition at line 4162 of file PSDL_Node.cpp.
References type_of_export_two_.
Referenced by TAO_PSDL_Scope_Visitor::visit_export_dcl(), TAO_PSDL_Node_Visitor::visit_export_dcl(), and Dump_Visitor::visit_export_dcl().
04163 { 04164 return this->type_of_export_two_; 04165 }
The values.
Definition at line 2656 of file PSDL_Node.h.
Referenced by type_of_export_one(), and ~TAO_PSDL_Export_Dcl().
Definition at line 2657 of file PSDL_Node.h.
Referenced by type_of_export_two(), and ~TAO_PSDL_Export_Dcl().
1.4.7