**************************************************************** More...
#include <PSDL_Node.h>
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 3049 of file PSDL_Node.cpp.
: expr_ (expr) { }
TAO_PSDL_Const_Exp::~TAO_PSDL_Const_Exp | ( | void | ) | [virtual] |
Definition at line 3054 of file PSDL_Node.cpp.
{ delete this->expr_; }
int TAO_PSDL_Const_Exp::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 3068 of file PSDL_Node.cpp.
{ return visitor->visit_const_exp (this); }
TAO_PSDL_Node * TAO_PSDL_Const_Exp::expr | ( | void | ) | const |
TAO_PSDL_Node* TAO_PSDL_Const_Exp::expr_ [private] |
The values.
Definition at line 1984 of file PSDL_Node.h.