#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.
TAO_PSDL_Const_Exp::TAO_PSDL_Const_Exp | ( | TAO_PSDL_Node * | expr | ) |
****************************************************************
Definition at line 3053 of file PSDL_Node.cpp.
TAO_PSDL_Const_Exp::~TAO_PSDL_Const_Exp | ( | void | ) | [virtual] |
Definition at line 3058 of file PSDL_Node.cpp.
References expr_.
03059 { 03060 delete this->expr_; 03061 }
int TAO_PSDL_Const_Exp::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= 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 }
TAO_PSDL_Node * TAO_PSDL_Const_Exp::expr | ( | void | ) | const |
Get the value.
Definition at line 3065 of file PSDL_Node.cpp.
References expr_.
03066 { 03067 return this->expr_; 03068 }
TAO_PSDL_Node* TAO_PSDL_Const_Exp::expr_ [private] |
The values.
Definition at line 1984 of file PSDL_Node.h.
Referenced by expr(), and ~TAO_PSDL_Const_Exp().