- wxVectorT is a template class which implements most of the std::vector
- class and can be used like it. If wxWidgets is compiled in STL mode,
- wxVector will just be a typedef to std::vector. Just like for std::vector,
- objects stored in wxVectorT need to be @e assignable but don't have to
- be @e default constructible.
+ wxVector<T> is a template class which implements most of the @c std::vector
+ class and can be used like it.