#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_And_Expr:
Public Member Functions | |
TAO_PSDL_And_Expr (TAO_PSDL_Node *shift_expr) | |
**************************************************************** | |
TAO_PSDL_And_Expr (TAO_PSDL_Node *and_expr, TAO_PSDL_Node *shift_expr) | |
virtual | ~TAO_PSDL_And_Expr (void) |
TAO_PSDL_Node * | and_expr (void) const |
Get the value. | |
TAO_PSDL_Node * | shift_expr (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | and_expr_ |
The values. | |
TAO_PSDL_Node * | shift_expr_ |
Definition at line 2039 of file PSDL_Node.h.
|
****************************************************************
Definition at line 3165 of file PSDL_Node.cpp.
03166 : and_expr_ (0), 03167 shift_expr_ (shift_expr) 03168 { 03169 } |
|
Definition at line 3171 of file PSDL_Node.cpp.
03173 : and_expr_ (and_expr), 03174 shift_expr_ (shift_expr) 03175 { 03176 } |
|
Definition at line 3178 of file PSDL_Node.cpp. References shift_expr_.
03179 { 03180 if (this->shift_expr_ != 0) 03181 delete this->shift_expr_; 03182 03183 delete this->and_expr_; 03184 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 3201 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_and_expr().
03202 { 03203 return visitor->visit_and_expr (this); 03204 } |
|
Get the value.
Definition at line 3188 of file PSDL_Node.cpp.
03189 { 03190 return this->and_expr_; 03191 } |
|
Definition at line 3194 of file PSDL_Node.cpp. References shift_expr_.
03195 { 03196 return this->shift_expr_; 03197 } |
|
The values.
Definition at line 2058 of file PSDL_Node.h. |
|
Definition at line 2059 of file PSDL_Node.h. Referenced by shift_expr(), and ~TAO_PSDL_And_Expr(). |