#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Add_Expr:
Public Member Functions | |
TAO_PSDL_Add_Expr (TAO_PSDL_Node *mult_expr) | |
**************************************************************** | |
TAO_PSDL_Add_Expr (TAO_PSDL_Node *add_expr, TAO_PSDL_Node *type, TAO_PSDL_Node *mult_expr) | |
virtual | ~TAO_PSDL_Add_Expr (void) |
TAO_PSDL_Node * | type (void) const |
Get the value. | |
TAO_PSDL_Node * | add_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 * | add_expr_ |
The values. | |
TAO_PSDL_Node * | type_ |
TAO_PSDL_Node * | mult_expr_ |
Definition at line 2093 of file PSDL_Node.h.
|
****************************************************************
Definition at line 3259 of file PSDL_Node.cpp.
03260 : add_expr_ (0), 03261 type_ (0), 03262 mult_expr_ (mult_expr) 03263 { 03264 } |
|
Definition at line 3266 of file PSDL_Node.cpp.
03269 : add_expr_ (add_expr), 03270 type_ (type), 03271 mult_expr_ (mult_expr) 03272 { 03273 } |
|
Definition at line 3275 of file PSDL_Node.cpp. References mult_expr_.
03276 { 03277 if (this->add_expr_ != 0) 03278 delete this->add_expr_; 03279 03280 delete this->mult_expr_; 03281 } |
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 3304 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_add_expr().
03305 { 03306 return visitor->visit_add_expr (this); 03307 } |
|
Definition at line 3291 of file PSDL_Node.cpp.
03292 { 03293 return this->add_expr_; 03294 } |
|
Definition at line 3297 of file PSDL_Node.cpp. References mult_expr_.
03298 { 03299 return this->mult_expr_; 03300 } |
|
Get the value.
Definition at line 3285 of file PSDL_Node.cpp.
03286 { 03287 return this->type_; 03288 } |
|
The values.
Definition at line 2114 of file PSDL_Node.h. |
|
Definition at line 2116 of file PSDL_Node.h. Referenced by mult_expr(), and ~TAO_PSDL_Add_Expr(). |
|
Reimplemented from TAO_PSDL_Node. Definition at line 2115 of file PSDL_Node.h. |