26 #ifndef __TERRALIB_DATAACCESS_INTERNAL_FUNCTIONCATALOG_H 
   27 #define __TERRALIB_DATAACCESS_INTERNAL_FUNCTIONCATALOG_H 
   30 #include "../Config.h" 
   38 #include <boost/noncopyable.hpp> 
   85         std::vector<FunctionDefn*>* 
find(
const std::string& functionName) 
const;
 
   89         std::map<std::string, std::vector<FunctionDefn*>* > 
m_fMap;  
 
A FunctionCatalog can be used to keep track of registered functions.
 
~FunctionCatalog()
Destructor.
 
std::map< std::string, std::vector< FunctionDefn * > * > m_fMap
Function map: function-name -> std::vector<FunctionDef*>*.
 
std::vector< FunctionDefn * > * find(const std::string &functionName) const
It finds the function with the given name.
 
FunctionCatalog()
Constructor.
 
void insert(FunctionDefn *fdfn)
It inserts the function into the catalog.
 
The definition of a function that can be used in a query object.
 
#define TEDATAACCESSEXPORT
You can use this macro in order to export/import classes and functions from this module.