#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Const_Exp:
Public Member Functions | |
TAO_PSDL_Const_Exp (TAO_PSDL_Node *expr) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Const_Exp (void) |
TAO_PSDL_Node * | expr (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | expr_ |
The values. |
Definition at line 1968 of file PSDL_Node.h.
|
****************************************************************
Definition at line 3053 of file PSDL_Node.cpp.
03054 : expr_ (expr) 03055 { 03056 } |
|
Definition at line 3058 of file PSDL_Node.cpp. References expr_.
03059 { 03060 delete this->expr_; 03061 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 3072 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_const_exp().
03073 { 03074 return visitor->visit_const_exp (this); 03075 } |
|
Get the value.
Definition at line 3065 of file PSDL_Node.cpp. References expr_.
03066 { 03067 return this->expr_; 03068 } |
|
The values.
Definition at line 1984 of file PSDL_Node.h. Referenced by expr(), and ~TAO_PSDL_Const_Exp(). |