#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Or_Expr:
Public Member Functions | |
TAO_PSDL_Or_Expr (TAO_PSDL_Node *xor_expr) | |
**************************************************************** | |
TAO_PSDL_Or_Expr (TAO_PSDL_Node *or_expr, TAO_PSDL_Node *xor_expr) | |
virtual | ~TAO_PSDL_Or_Expr (void) |
TAO_PSDL_Node * | or_expr (void) const |
Get the value. | |
TAO_PSDL_Node * | xor_expr (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | or_expr_ |
The values. | |
TAO_PSDL_Node * | xor_expr_ |
Definition at line 1989 of file PSDL_Node.h.
|
****************************************************************
Definition at line 3079 of file PSDL_Node.cpp.
|
|
Definition at line 3085 of file PSDL_Node.cpp.
|
|
Definition at line 3092 of file PSDL_Node.cpp. References or_expr_, and xor_expr_.
|
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 3115 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_or_expr().
03116 { 03117 return visitor->visit_or_expr (this); 03118 } |
|
Get the value.
Definition at line 3102 of file PSDL_Node.cpp. References or_expr_.
03103 { 03104 return this->or_expr_; 03105 } |
|
Definition at line 3108 of file PSDL_Node.cpp. References xor_expr_.
03109 { 03110 return this->xor_expr_; 03111 } |
|
The values.
Definition at line 2008 of file PSDL_Node.h. Referenced by or_expr(), and ~TAO_PSDL_Or_Expr(). |
|
Definition at line 2009 of file PSDL_Node.h. Referenced by xor_expr(), and ~TAO_PSDL_Or_Expr(). |