#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Ref_Rep_Directive:
Public Member Functions | |
TAO_PSDL_Ref_Rep_Directive (TAO_PSDL_Node *simple_declarator) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Ref_Rep_Directive (void) |
TAO_PSDL_Node * | simple_declarator (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | simple_declarator_ |
The values. |
Definition at line 1143 of file PSDL_Node.h.
|
****************************************************************
Definition at line 1689 of file PSDL_Node.cpp.
01690 : simple_declarator_ (simple_declarator) 01691 { 01692 } |
|
Definition at line 1694 of file PSDL_Node.cpp.
01695 { 01696 delete this->simple_declarator_; 01697 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 1708 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_ref_rep_directive().
01709 { 01710 return visitor->visit_ref_rep_directive (this); 01711 } |
|
Get the value.
Definition at line 1701 of file PSDL_Node.cpp.
01702 { 01703 return this->simple_declarator_; 01704 } |
|
The values.
Definition at line 1159 of file PSDL_Node.h. |