**************************************************************** More...
#include <PSDL_Node.h>
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 3161 of file PSDL_Node.cpp.
: and_expr_ (0), shift_expr_ (shift_expr) { }
TAO_PSDL_And_Expr::TAO_PSDL_And_Expr | ( | TAO_PSDL_Node * | and_expr, | |
TAO_PSDL_Node * | shift_expr | |||
) |
Definition at line 3167 of file PSDL_Node.cpp.
: and_expr_ (and_expr), shift_expr_ (shift_expr) { }
TAO_PSDL_And_Expr::~TAO_PSDL_And_Expr | ( | void | ) | [virtual] |
Definition at line 3174 of file PSDL_Node.cpp.
{ if (this->shift_expr_ != 0) delete this->shift_expr_; delete this->and_expr_; }
int TAO_PSDL_And_Expr::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 3197 of file PSDL_Node.cpp.
{ return visitor->visit_and_expr (this); }
TAO_PSDL_Node * TAO_PSDL_And_Expr::and_expr | ( | void | ) | const |
TAO_PSDL_Node * TAO_PSDL_And_Expr::shift_expr | ( | void | ) | const |
Definition at line 3190 of file PSDL_Node.cpp.
{ return this->shift_expr_; }
TAO_PSDL_Node* TAO_PSDL_And_Expr::and_expr_ [private] |
The values.
Definition at line 2058 of file PSDL_Node.h.
TAO_PSDL_Node* TAO_PSDL_And_Expr::shift_expr_ [private] |
Definition at line 2059 of file PSDL_Node.h.