hello everyone,
if i want to add a template function in a form from within qt designer, what steps should i follow?
please be specific cause apart from my influent knowledge of qtdesigner, i have practically zero knowledge on templates..
so far i have typed 'template <class T>' on the line right above my fn implementations

template <class T>
void setValueForm<T>::setVars( T num,const float &lowLim, const float&highLim, const float &theSmallStep,const float &theBigStep)
{
...
shownum<T>(num)
...
}

template <class T>
void setValueForm<T>::showNum( const T& num )
{
}

and i also tried to add in the forward declarations field 'template <class T>'. but it does not compile

thank you for your help
nass