-
- 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.
-
- You can refer to the STL documentation for further information.
-
- @library{wxbase}
- @category{FIXME}
-
- @seealso
- @ref overview_wxcontaineroverview "Container classes overview", wxListT,
- wxArrayT
+
+ wxVector<T> is a template class which implements most of the @c std::vector
+ class and can be used like it.
+
+ If wxWidgets is compiled in STL mode, wxVector will just be a typedef to @c
+ std::vector. Just like for @c std::vector, objects stored in wxVector<T>
+ need to be @e assignable but don't have to be @e default constructible.
+
+ Please refer to the STL documentation for further information.
+
+ @nolibrary
+ @category{containers}
+
+ @see @ref overview_container, wxListT, wxArrayT