26 #ifndef __TERRALIB_DATAACCESS_INTERNAL_FUNCTIONPARAMETER_H 
   27 #define __TERRALIB_DATAACCESS_INTERNAL_FUNCTIONPARAMETER_H 
   30 #include "../Config.h" 
   66         const std::string& 
getName()
 const { 
return m_name; }
 
   73         void setName(
const std::string& name) { m_name = name; }
 
   98 #endif  // __TERRALIB_DATAACCESS_INTERNAL_FUNCTIONPARAMETER_H 
const std::string & getName() const 
It returns the function name. 
 
A FunctionParameter models the parameter of a function definition. 
 
~FunctionParameter()
Destructor. 
 
void setType(int t)
It sets the parameter type. 
 
#define TEDATAACCESSEXPORT
You can use this macro in order to export/import classes and functions from this module. 
 
std::string m_name
Parameter name. 
 
int getType() const 
It returns the parameter type. 
 
FunctionParameter(const std::string &name, int t)
Constructor. 
 
void setName(const std::string &name)
It sets the function name. 
 
int m_type
Parameter type.