template<class type>
template<class SortFunc>
Sorts the list using a user supplied callable entity taking two pointers of type type.
Definition at line 237 of file qptrvector.h. 00238 { 00239 std::sort(std::vector<type *>::begin(), std::vector<type *>::end(), sortfunc); 00240 }
|