#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.
TAO_PSDL_And_Expr::TAO_PSDL_And_Expr | ( | TAO_PSDL_Node * | shift_expr | ) |
****************************************************************
Definition at line 3165 of file PSDL_Node.cpp.
03166 : and_expr_ (0), 03167 shift_expr_ (shift_expr) 03168 { 03169 }
TAO_PSDL_And_Expr::TAO_PSDL_And_Expr | ( | TAO_PSDL_Node * | and_expr, | |
TAO_PSDL_Node * | shift_expr | |||
) |
Definition at line 3171 of file PSDL_Node.cpp.
03173 : and_expr_ (and_expr), 03174 shift_expr_ (shift_expr) 03175 { 03176 }
TAO_PSDL_And_Expr::~TAO_PSDL_And_Expr | ( | void | ) | [virtual] |
Definition at line 3178 of file PSDL_Node.cpp.
References and_expr_, and shift_expr_.
03179 { 03180 if (this->shift_expr_ != 0) 03181 delete this->shift_expr_; 03182 03183 delete this->and_expr_; 03184 }
int TAO_PSDL_And_Expr::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= 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 }
TAO_PSDL_Node * TAO_PSDL_And_Expr::and_expr | ( | void | ) | const |
Get the value.
Definition at line 3188 of file PSDL_Node.cpp.
References and_expr_.
03189 { 03190 return this->and_expr_; 03191 }
TAO_PSDL_Node * TAO_PSDL_And_Expr::shift_expr | ( | void | ) | const |
Definition at line 3194 of file PSDL_Node.cpp.
References shift_expr_.
03195 { 03196 return this->shift_expr_; 03197 }
TAO_PSDL_Node* TAO_PSDL_And_Expr::and_expr_ [private] |
The values.
Definition at line 2058 of file PSDL_Node.h.
Referenced by and_expr(), and ~TAO_PSDL_And_Expr().
TAO_PSDL_Node* TAO_PSDL_And_Expr::shift_expr_ [private] |