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; }
 
A FunctionParameter models the parameter of a function definition.
 
std::string m_name
Parameter name.
 
const std::string & getName() const
It returns the function name.
 
void setName(const std::string &name)
It sets the function name.
 
int m_type
Parameter type.
 
int getType() const
It returns the parameter type.
 
FunctionParameter(const std::string &name, int t)
Constructor.
 
~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.