#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Mult_Expr:
Public Member Functions | |
TAO_PSDL_Mult_Expr (TAO_PSDL_Node *unary_expr) | |
**************************************************************** | |
TAO_PSDL_Mult_Expr (TAO_PSDL_Node *mult_expr, TAO_PSDL_Node *unary_expr) | |
TAO_PSDL_Mult_Expr (TAO_PSDL_Node *mult_expr, TAO_PSDL_Node *type, TAO_PSDL_Node *unary_expr) | |
virtual | ~TAO_PSDL_Mult_Expr (void) |
TAO_PSDL_Node * | type (void) const |
Get the value. | |
TAO_PSDL_Node * | unary_expr (void) const |
TAO_PSDL_Node * | mult_expr (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | mult_expr_ |
The values. | |
TAO_PSDL_Node * | type_ |
TAO_PSDL_Node * | unary_expr_ |
Definition at line 2121 of file PSDL_Node.h.
|
****************************************************************
Definition at line 3311 of file PSDL_Node.cpp.
03312 : mult_expr_ (0), 03313 type_ (0), 03314 unary_expr_ (unary_expr) 03315 { 03316 } |
|
Definition at line 3318 of file PSDL_Node.cpp.
03320 : mult_expr_ (mult_expr), 03321 type_ (0), 03322 unary_expr_ (unary_expr) 03323 { 03324 } |
|
Definition at line 3326 of file PSDL_Node.cpp.
03329 : mult_expr_ (mult_expr), 03330 type_ (type), 03331 unary_expr_ (unary_expr) 03332 { 03333 } |
|
Definition at line 3335 of file PSDL_Node.cpp. References unary_expr_.
03336 { 03337 if (this->mult_expr_ != 0) 03338 delete this->mult_expr_; 03339 03340 if (this->type_ != 0) 03341 delete this->type_; 03342 03343 delete this->unary_expr_; 03344 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 3367 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_mult_expr().
03368 { 03369 return visitor->visit_mult_expr (this); 03370 } |
|
Definition at line 3360 of file PSDL_Node.cpp.
03361 { 03362 return this->mult_expr_; 03363 } |
|
Get the value.
Definition at line 3348 of file PSDL_Node.cpp.
03349 { 03350 return this->type_; 03351 } |
|
Definition at line 3354 of file PSDL_Node.cpp. References unary_expr_.
03355 { 03356 return this->unary_expr_; 03357 } |
|
The values.
Definition at line 2146 of file PSDL_Node.h. |
|
Reimplemented from TAO_PSDL_Node. Definition at line 2147 of file PSDL_Node.h. |
|
Definition at line 2148 of file PSDL_Node.h. Referenced by unary_expr(), and ~TAO_PSDL_Mult_Expr(). |