26 #ifndef __TERRALIB_FE_INTERNAL_LITERAL_H 
   27 #define __TERRALIB_FE_INTERNAL_LITERAL_H 
#define TE_DEFINE_VISITABLE
 
This is an abstract class that models a Filter Encoding expression.
 
This class can be used to represent literal values.
 
Literal(const std::string &value)
It initializes a new Literal.
 
std::string m_value
Literal expression. (Mandatory)
 
const std::string & getValue() const
It returns the literal value.
 
Expression * clone() const
It returns a clone of this object.
 
void setValue(const std::string &v)
It sets the literal value.
 
Auxiliary classes and functions to serialize filter expressions from a XML document.
 
#define TEFEEXPORT
You can use this macro in order to export/import classes and functions from this module.