A base class for binary operations. More...
#include <BinaryOp.h>
Public Types | |
typedef void | ReturnType |
typedef QueryVisitor | VisitorType |
Public Member Functions | |
virtual ReturnType | accept (VisitorType &guest) const =0 |
It call the visit method from the guest object. More... | |
void | add (Expression *arg) |
It adds the argument to the function list of arguments. More... | |
TE_DEFINE_VISITABLE | BinaryOp (const std::string &name, Expression *arg1, Expression *arg2) |
Constructor. More... | |
BinaryOp (const std::string &name, const Expression &arg1, const Expression &arg2) | |
Constructor. More... | |
BinaryOp (const BinaryOp &rhs) | |
Copy constructor. More... | |
Expression * | clone () const |
It creates a new copy of this expression. More... | |
Expression * | getArg (std::size_t i) const |
It returns the i-th function argument. More... | |
Expression * | getFirst () const |
It returns the first function argument. More... | |
const std::string & | getName () const |
It returns the function name. More... | |
std::size_t | getNumArgs () const |
It returns the number of arguments informed to the function. More... | |
Expression * | getSecond () const |
It returns the second function argument. More... | |
BinaryOp & | operator= (const BinaryOp &rhs) |
Expression * | operator[] (std::size_t i) const |
It returns the i-th function argument. More... | |
void | setFirst (Expression *arg) |
It sets the first function argument. More... | |
void | setSecond (Expression *arg) |
It sets the second function argument. More... | |
virtual | ~BinaryOp () |
Virtual Destructor. More... | |
Protected Attributes | |
std::vector< Expression * > | m_args |
The list of arguments. More... | |
std::string | m_name |
The function name. May be an operator symbol or just a regular name like ST_Intersects. More... | |
A base class for binary operations.
Boolean logic operator: OR.
This operator is just a syntatic-suggar.
Definition at line 43 of file BinaryOp.h.
|
inherited |
Definition at line 58 of file BaseVisitable.h.
|
inherited |
Definition at line 57 of file BaseVisitable.h.
|
inline |
Constructor.
name | The operator name. |
arg1 | The first argument. |
arg2 | The second argument. |
Definition at line 58 of file BinaryOp.h.
|
inline |
Constructor.
name | The operator name. |
arg1 | The first argument. |
arg2 | The second argument. |
Definition at line 69 of file BinaryOp.h.
te::da::BinaryOp::BinaryOp | ( | const BinaryOp & | rhs | ) |
Copy constructor.
|
inlinevirtual |
Virtual Destructor.
Definition at line 75 of file BinaryOp.h.
|
pure virtualinherited |
It call the visit method from the guest object.
guest | The guest or visitor. |
|
inherited |
It adds the argument to the function list of arguments.
arg | The argument to be added. |
|
virtual |
It creates a new copy of this expression.
Reimplemented from te::da::BinaryFunction.
Reimplemented in te::da::LessThanOrEqualTo, te::da::Div, te::da::EqualTo, te::da::GreaterThan, te::da::GreaterThanOrEqualTo, te::da::LessThan, te::da::Mul, te::da::NotEqualTo, te::da::Or, and te::da::Sub.
|
inherited |
It returns the i-th function argument.
i | The argument position. |
|
inherited |
It returns the first function argument.
|
inlineinherited |
|
inherited |
It returns the number of arguments informed to the function.
|
inherited |
It returns the second function argument.
|
inherited |
It returns the i-th function argument.
i | The argument position. |
|
inherited |
It sets the first function argument.
arg | The first function argument. |
|
inherited |
It sets the second function argument.
arg | The second function argument. |
|
protectedinherited |
The list of arguments.
Definition at line 118 of file Function.h.
|
protectedinherited |
The function name. May be an operator symbol or just a regular name like ST_Intersects.
Definition at line 117 of file Function.h.