It models the inequality operator less than (<). More...
#include <LessThan.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... | |
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... | |
TE_DEFINE_VISITABLE | LessThan (Expression *arg1, Expression *arg2) |
Constructor. More... | |
LessThan (const Expression &arg1, const Expression &arg2) | |
Constructor. More... | |
LessThan (const LessThan &rhs) | |
Copy constructor. More... | |
LessThan & | operator= (const LessThan &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... | |
~LessThan () | |
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... | |
It models the inequality operator less than (<).
This operator is just a syntatic-suggar.
Definition at line 46 of file LessThan.h.
|
inherited |
Definition at line 58 of file BaseVisitable.h.
|
inherited |
Definition at line 57 of file BaseVisitable.h.
|
inline |
Constructor.
arg1 | The first argument. |
arg2 | The second argument. |
Definition at line 60 of file LessThan.h.
|
inline |
Constructor.
arg1 | The first argument. |
arg2 | The second argument. |
Definition at line 68 of file LessThan.h.
te::da::LessThan::LessThan | ( | const LessThan & | rhs | ) |
Copy constructor.
|
inline |
Destructor.
Definition at line 74 of file LessThan.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::BinaryOp.
|
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.