#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Positive_Int_Const:
Public Member Functions | |
TAO_PSDL_Positive_Int_Const (TAO_PSDL_Node *const_exp) | |
**************************************************************** | |
virtual | ~TAO_PSDL_Positive_Int_Const (void) |
TAO_PSDL_Node * | const_exp (void) const |
Get the value. | |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | const_exp_ |
The values. |
Definition at line 3264 of file PSDL_Node.h.
|
****************************************************************
Definition at line 5156 of file PSDL_Node.cpp.
05157 : const_exp_ (const_exp) 05158 { 05159 } |
|
Definition at line 5161 of file PSDL_Node.cpp.
05162 { 05163 delete this->const_exp_; 05164 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 5175 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_positive_int_const().
05176 { 05177 return visitor->visit_positive_int_const (this); 05178 } |
|
Get the value.
Definition at line 5168 of file PSDL_Node.cpp.
05169 { 05170 return this->const_exp_; 05171 } |
|
The values.
Definition at line 3281 of file PSDL_Node.h. |