I've got a generic function I'm using to sort some Objects in List class.
This function works very well but when I want to apply this function to a class using a function pointer to a member function in that class, it don't build.
The function is:
template <typename T1, typename T2, typename T3>
void DialogFaitListing::trie(T1 * list, T2 (T1::*fx)(quint16), T3 (T2::*crit)())
{
for(int i(0);i<list->count();i++)
{
for(int j(i);j<list->count();j++)
{
if((((list->*fx)(i)).*crit)() > (((list->*fx)(j)).*crit)())
{
list->swap(i,j);
}
}
}
}
where list is the Class which contains the list of objects, fx is the function pointer to access the object and crit is the objects comparison function for the sort.
When I build using this line:
trie(vend,&Vendeurs::getVend,&Vendeur::getNom);
I get this error:
dialogfaitlisting.cpp:459: erreur : no matching function for call to
'DialogFaitListing::trie(Vendeurs*&, Vendeur (Vendeurs::*)(quint16),
QString (Personne::*)())'
ps: sorry for my bad English