#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Constr_Forward_Decl:
Public Member Functions | |
TAO_PSDL_Constr_Forward_Decl (TAO_PSDL_Node *type, TAO_PSDL_Node *identifier) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Constr_Forward_Decl (void) |
TAO_PSDL_Node * | type (void) const |
Get the value. | |
TAO_PSDL_Node * | identifier (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | type_ |
The values. | |
TAO_PSDL_Node * | identifier_ |
Definition at line 2467 of file PSDL_Node.h.
|
****************************************************************
Definition at line 3871 of file PSDL_Node.cpp.
03873 : type_ (type), 03874 identifier_ (identifier) 03875 { 03876 } |
|
Definition at line 3878 of file PSDL_Node.cpp.
03879 { 03880 delete this->identifier_; 03881 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 3897 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_constr_forward_decl().
03898 { 03899 return visitor->visit_constr_forward_decl (this); 03900 } |
|
Definition at line 3891 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_constr_forward_decl(), and Dump_Visitor::visit_constr_forward_decl().
03892 { 03893 return this->identifier_; 03894 } |
|
Get the value.
Definition at line 3885 of file PSDL_Node.cpp. Referenced by TAO_PSDL_Scope_Visitor::visit_constr_forward_decl(), and Dump_Visitor::visit_constr_forward_decl().
03886 { 03887 return this->type_; 03888 } |
|
Definition at line 2486 of file PSDL_Node.h. |
|
The values.
Reimplemented from TAO_PSDL_Node. Definition at line 2485 of file PSDL_Node.h. |