#include <PSDL_Node.h>
Inheritance diagram for TAO_PSDL_Xor_Expr:
Public Member Functions | |
TAO_PSDL_Xor_Expr (TAO_PSDL_Node *and_expr) | |
**************************************************************** | |
TAO_PSDL_Xor_Expr (TAO_PSDL_Node *xor_expr, TAO_PSDL_Node *and_expr) | |
virtual | ~TAO_PSDL_Xor_Expr (void) |
TAO_PSDL_Node * | xor_expr (void) const |
Get the value. | |
TAO_PSDL_Node * | and_expr (void) const |
int | accept (TAO_PSDL_Node_Visitor *visitor) |
= The Node methods. | |
Private Attributes | |
TAO_PSDL_Node * | xor_expr_ |
The values. | |
TAO_PSDL_Node * | and_expr_ |
Definition at line 2014 of file PSDL_Node.h.
|
****************************************************************
Definition at line 3122 of file PSDL_Node.cpp.
|
|
Definition at line 3128 of file PSDL_Node.cpp.
|
|
Definition at line 3135 of file PSDL_Node.cpp. References and_expr_.
|
|
= The Node methods.
Implements TAO_PSDL_Node. Definition at line 3158 of file PSDL_Node.cpp. References TAO_PSDL_Node_Visitor::visit_xor_expr().
03159 { 03160 return visitor->visit_xor_expr (this); 03161 } |
|
Definition at line 3151 of file PSDL_Node.cpp. References and_expr_.
03152 { 03153 return this->and_expr_; 03154 } |
|
Get the value.
Definition at line 3145 of file PSDL_Node.cpp.
03146 { 03147 return this->xor_expr_; 03148 } |
|
Definition at line 2034 of file PSDL_Node.h. Referenced by and_expr(), and ~TAO_PSDL_Xor_Expr(). |
|
The values.
Definition at line 2033 of file PSDL_Node.h. |