26 #ifndef __TERRALIB_FE_INTERNAL_FUNCTION_H
27 #define __TERRALIB_FE_INTERNAL_FUNCTION_H
#define TE_DEFINE_VISITABLE
This is an abstract class that models a Filter Encoding expression.
A function is a named procedure that performs a distinct computation.
std::string m_name
Function name. (Mandatory)
void setArgument(size_t i, Expression *argument)
It sets the argument in the specified position.
void removeArgument(size_t i)
It removes the n-th argument.
Expression * getArgument(size_t i) const
It returns the argument in the specified position.
const std::string & getName() const
It returns the function name.
virtual Expression * clone() const
It returns a clone of this object.
std::vector< Expression * > m_argumentList
Argument list (actually, a list of expressions). (Optional)
void setName(const std::string &n)
It sets the function name.
Function(const std::string &name)
It initializes a new Function.
void add(Expression *argument)
It adds a new argument to the function.
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.