SRGraphComponent::qsPointYSorterCompareA

int _cdecl SRGraphComponent::qsPointYSorterCompareA(const void * a, const void * b)

Callback routine for qsort -- sorts arrays of PointSorter objects into ascending order

Defined in: SRGComp.cpp

Return Value

a==b 0, a>b 1, a

Parameters

a

Pointer to the first PointSorter -- cast to const void *

b

Pointer to the second PointSorter -- cast to const void *

Developer Notes

This callback has been placed in the component class because it will be used by the various display classes and routines derived from SRGraphComponent. Note that it does not deal with any member data and therefore does not require a reference to the class instance which calls it. This routine is not virtual and should not be altered or overridden without first understanding the implications of class member function callbacks.