26#ifndef __TERRALIB_FE_INTERNAL_BINARYCOMPARISONOP_H 
   27#define __TERRALIB_FE_INTERNAL_BINARYCOMPARISONOP_H 
#define TE_DEFINE_VISITABLE
 
A comparison operator is used to form expressions that evaluate the mathematical comparison between t...
 
A class for binary comparison operators.
 
Expression * getFirst() const
It returns the first operand.
 
BinaryComparisonOp(const char *opName, Expression *f, Expression *s)
It initializes a new BinaryComparisonOp.
 
Expression * m_second
second operand (mandatory).
 
virtual ~BinaryComparisonOp()
Virtual destructor.
 
void enableMatchCase()
It enables the match case flag. So comparisons will be case sensitive.
 
Expression * getSecond() const
It returns the second operand.
 
Expression * m_first
first operand (mandatory).
 
void setFirst(Expression *first)
It sets the first operand.
 
ComparisonOp * clone() const
It creates a new copy of this object.
 
bool m_matchCase
Optional (default: true).
 
BinaryComparisonOp(const char *opName=0)
It initializes a new BinaryComparisonOp.
 
void disableMatchCase()
It disables the match case flag. So comparisons will not be case sensitive.
 
void setSecond(Expression *second)
It sets the second operand.
 
A comparison operator is used to form expressions that evaluate the mathematical comparison between t...
 
This is an abstract class that models a Filter Encoding expression.
 
#define TEFEEXPORT
You can use this macro in order to export/import classes and functions from this module.