#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Constr_Type_Spec:
Public Member Functions | |
TAO_PSDL_Constr_Type_Spec (TAO_PSDL_Node *type_of_constr_type_spec) | |
*********************************************************** | |
virtual | ~TAO_PSDL_Constr_Type_Spec (void) |
TAO_PSDL_Node * | type_of_constr_type_spec (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | type_of_constr_type_spec_ |
The values. |
Definition at line 1522 of file PSDL_Node.h.
TAO_PSDL_Constr_Type_Spec::TAO_PSDL_Constr_Type_Spec | ( | TAO_PSDL_Node * | type_of_constr_type_spec | ) |
***********************************************************
Definition at line 2259 of file PSDL_Node.cpp.
02261 : type_of_constr_type_spec_ (type_of_constr_type_spec) 02262 { 02263 }
TAO_PSDL_Constr_Type_Spec::~TAO_PSDL_Constr_Type_Spec | ( | void | ) | [virtual] |
Definition at line 2265 of file PSDL_Node.cpp.
References type_of_constr_type_spec_.
02266 { 02267 delete this->type_of_constr_type_spec_; 02268 }
int TAO_PSDL_Constr_Type_Spec::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 2278 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_constr_type_spec().
02279 { 02280 return visitor->visit_constr_type_spec (this); 02281 }
TAO_PSDL_Node * TAO_PSDL_Constr_Type_Spec::type_of_constr_type_spec | ( | void | ) | const |
Get the value.
Definition at line 2271 of file PSDL_Node.cpp.
References type_of_constr_type_spec_.
02272 { 02273 return this->type_of_constr_type_spec_; 02274 }
The values.
Definition at line 1538 of file PSDL_Node.h.
Referenced by type_of_constr_type_spec(), and ~TAO_PSDL_Constr_Type_Spec().