#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Shift_Expr:
Public Member Functions | |
TAO_PSDL_Shift_Expr (TAO_PSDL_Node *add_expr) | |
**************************************************************** | |
TAO_PSDL_Shift_Expr (TAO_PSDL_Node *shift_expr, TAO_PSDL_Node *type, TAO_PSDL_Node *add_expr) | |
virtual | ~TAO_PSDL_Shift_Expr (void) |
TAO_PSDL_Node * | type (void) const |
Get the value. | |
TAO_PSDL_Node * | add_expr (void) const |
TAO_PSDL_Node * | shift_expr (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | shift_expr_ |
The values. | |
TAO_PSDL_Node * | type_ |
TAO_PSDL_Node * | add_expr_ |
Definition at line 2064 of file PSDL_Node.h.
TAO_PSDL_Shift_Expr::TAO_PSDL_Shift_Expr | ( | TAO_PSDL_Node * | add_expr | ) |
****************************************************************
Definition at line 3207 of file PSDL_Node.cpp.
03208 : shift_expr_ (0), 03209 type_ (0), 03210 add_expr_ (add_expr) 03211 { 03212 }
TAO_PSDL_Shift_Expr::TAO_PSDL_Shift_Expr | ( | TAO_PSDL_Node * | shift_expr, | |
TAO_PSDL_Node * | type, | |||
TAO_PSDL_Node * | add_expr | |||
) |
Definition at line 3214 of file PSDL_Node.cpp.
03217 : shift_expr_ (shift_expr), 03218 type_ (type), 03219 add_expr_ (add_expr) 03220 { 03221 }
TAO_PSDL_Shift_Expr::~TAO_PSDL_Shift_Expr | ( | void | ) | [virtual] |
Definition at line 3223 of file PSDL_Node.cpp.
References add_expr_, and shift_expr_.
03224 { 03225 if (this->shift_expr_ != 0) 03226 delete this->shift_expr_; 03227 03228 delete this->add_expr_; 03229 }
int TAO_PSDL_Shift_Expr::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= The Node methods.
Implements TAO_PSDL_Node.
Definition at line 3252 of file PSDL_Node.cpp.
References TAO_PSDL_Node_Visitor::visit_shift_expr().
03253 { 03254 return visitor->visit_shift_expr (this); 03255 }
TAO_PSDL_Node * TAO_PSDL_Shift_Expr::add_expr | ( | void | ) | const |
Definition at line 3239 of file PSDL_Node.cpp.
References add_expr_.
03240 { 03241 return this->add_expr_; 03242 }
TAO_PSDL_Node * TAO_PSDL_Shift_Expr::shift_expr | ( | void | ) | const |
Definition at line 3245 of file PSDL_Node.cpp.
References shift_expr_.
03246 { 03247 return this->shift_expr_; 03248 }
TAO_PSDL_Node * TAO_PSDL_Shift_Expr::type | ( | void | ) | const |
Get the value.
Definition at line 3233 of file PSDL_Node.cpp.
References type_.
03234 { 03235 return this->type_; 03236 }
TAO_PSDL_Node* TAO_PSDL_Shift_Expr::add_expr_ [private] |
TAO_PSDL_Node* TAO_PSDL_Shift_Expr::shift_expr_ [private] |
The values.
Definition at line 2086 of file PSDL_Node.h.
Referenced by shift_expr(), and ~TAO_PSDL_Shift_Expr().
TAO_PSDL_Node* TAO_PSDL_Shift_Expr::type_ [private] |
Reimplemented from TAO_PSDL_Node.
Definition at line 2087 of file PSDL_Node.h.
Referenced by type().