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.
FunctionParameter(const std::string &name, int t)
Constructor.
std::string m_name
Parameter name.
void setName(const std::string &name)
It sets the function name.
int getType() const
It returns the parameter type.
int m_type
Parameter type.
~FunctionParameter()
Destructor.
#define TEDATAACCESSEXPORT
You can use this macro in order to export/import classes and functions from this module.
void setType(int t)
It sets the parameter type.
A FunctionParameter models the parameter of a function definition.