Added docs to wxTrackable and wxWeakRef<T>

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51069 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2008-01-07 10:59:02 +00:00
parent 2712e31795
commit a6acecec40
6 changed files with 152 additions and 12 deletions

View File

@@ -1,9 +1,12 @@
\section{\class{wxVector<T>}}\label{wxvector}
wxVector is a template which implements most of the std::vector
class and can be used like. If wxWidgets is compiled in STL mode,
wxVector will just be a typedef to std::vector. You should
refer to the STL documentation for further information.
wxVector<T> 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 wxVector<T> need to be {\it assignable} but don't have to
be {\it default constructible}.
You can refer to the STL documentation for further information.
\wxheading{Derived from}