git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58605
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
@section array_predef Predefined array types
wxWidgets defines the following dynamic array types:
@section array_predef Predefined array types
wxWidgets defines the following dynamic array types:
- - wxArrayShort
- - wxArrayInt
- - wxArrayDouble
- - wxArrayLong
- - wxArrayPtrVoid
+ - ::wxArrayShort
+ - ::wxArrayInt
+ - ::wxArrayDouble
+ - ::wxArrayLong
+ - ::wxArrayPtrVoid
To use them you don't need any macro; you just need to include @c dynarray.h.
To use them you don't need any macro; you just need to include @c dynarray.h.
@see @ref overview_container, wxList<T>, wxVector<T>
*/
@see @ref overview_container, wxList<T>, wxVector<T>
*/
class wxArray<T>
{
public:
class wxArray<T>
{
public:
*/
#define WX_PREPEND_ARRAY(wxArray_arrayToModify, wxArray_arrayToBePrepended)
*/
#define WX_PREPEND_ARRAY(wxArray_arrayToModify, wxArray_arrayToBePrepended)
+//@{
+/**
+ Predefined specialization of wxArray<T> for standard types.
+*/
+typedef wxArray<int> wxArrayInt;
+typedef wxArray<long> wxArrayLong;
+typedef wxArray<short> wxArrayShort;
+typedef wxArray<double> wxArrayDouble;
+typedef wxArray<void*> wxArrayPtrVoid;
+//@}