git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37114
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
Example:
\begin{verbatim}
Example:
\begin{verbatim}
-WX_DEFINE_ARRAY_INT(int, wxArrayInt);
+WX_DEFINE_ARRAY_INT(int, MyArrayInt);
-WX_DEFINE_ARRAY(MyClass *, wxArrayOfMyClass);
+WX_DEFINE_ARRAY(MyClass *, ArrayOfMyClass);
\end{verbatim}
Note that wxWidgets predefines the following standard array classes: wxArrayInt,
\end{verbatim}
Note that wxWidgets predefines the following standard array classes: wxArrayInt,
Example:
\begin{verbatim}
Example:
\begin{verbatim}
-WX_DEFINE_SORTED_ARRAY_INT(wxSortedArrayInt);
+WX_DEFINE_SORTED_ARRAY_INT(int, MySortedArrayInt);
-WX_DEFINE_SORTED_ARRAY(MyClass *, wxArrayOfMyClass);
+WX_DEFINE_SORTED_ARRAY(MyClass *, ArrayOfMyClass);
\end{verbatim}
You will have to initialize the objects of this class by passing a comparison
\end{verbatim}
You will have to initialize the objects of this class by passing a comparison