#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.
TAO_PSDL_Or_Expr::TAO_PSDL_Or_Expr | ( | TAO_PSDL_Node * | xor_expr | ) |
****************************************************************
Definition at line 3079 of file PSDL_Node.cpp.
TAO_PSDL_Or_Expr::TAO_PSDL_Or_Expr | ( | TAO_PSDL_Node * | or_expr, | |
TAO_PSDL_Node * | xor_expr | |||
) |
TAO_PSDL_Or_Expr::~TAO_PSDL_Or_Expr | ( | void | ) | [virtual] |
int TAO_PSDL_Or_Expr::accept | ( | TAO_PSDL_Node_Visitor * | visitor | ) | [virtual] |
= 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 }
TAO_PSDL_Node * TAO_PSDL_Or_Expr::or_expr | ( | void | ) | const |
Get the value.
Definition at line 3102 of file PSDL_Node.cpp.
References or_expr_.
03103 { 03104 return this->or_expr_; 03105 }
TAO_PSDL_Node * TAO_PSDL_Or_Expr::xor_expr | ( | void | ) | const |
Definition at line 3108 of file PSDL_Node.cpp.
References xor_expr_.
03109 { 03110 return this->xor_expr_; 03111 }
TAO_PSDL_Node* TAO_PSDL_Or_Expr::or_expr_ [private] |
The values.
Definition at line 2008 of file PSDL_Node.h.
Referenced by or_expr(), and ~TAO_PSDL_Or_Expr().
TAO_PSDL_Node* TAO_PSDL_Or_Expr::xor_expr_ [private] |