struct Xsection_data
{
TCHAR *name;
ads_point ipt;
double kumul;
int color;
};
bool NameSort(const Xsection_data& lhs, const Xsection_data& rhs)
{
return lhs.name < rhs.name;
}
functie ()
{
....
list<Xsection_data> XS_data;
XS_data.sort(NameSort);
...
}
Hallo,
sorteren werkt blijkbaar niet, hoe kan ik dit correct sorteren ? Ik wil dus de lijst sorteren op basis van de "name" in de struct Xsection_data.
thx !!
{
TCHAR *name;
ads_point ipt;
double kumul;
int color;
};
bool NameSort(const Xsection_data& lhs, const Xsection_data& rhs)
{
return lhs.name < rhs.name;
}
functie ()
{
....
list<Xsection_data> XS_data;
XS_data.sort(NameSort);
...
}
Hallo,
sorteren werkt blijkbaar niet, hoe kan ik dit correct sorteren ? Ik wil dus de lijst sorteren op basis van de "name" in de struct Xsection_data.
thx !!