Version: 2.9.4
Classes | Functions
vector.h File Reference

クラス

class  wxVector< T >
 wxVector<T> is a template class which implements most of the std::vector class and can be used like it. More...

Functions

template<typename T >
void wxVectorSort (wxVector< T > &v)
 Sort the contents of a wxVector<T>.

Function Documentation

template<typename T >
void wxVectorSort ( wxVector< T > &  v)

Sort the contents of a wxVector<T>.

In a STL build this function will be defined as a thin wrapper around std::sort. To be sortable the contained type must support the less-than operator.

   wxVector<SomeClass> v;
   ... // items are added to the vector v...
   wxVectorSort(v);
参照:
wxVector<T>
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines