Mention that dynamic array classes are obsolete more clearly

Update the documentation of the classes themselves and the containers
overview.
This commit is contained in:
Vadim Zeitlin
2018-06-01 18:17:53 +02:00
parent 0e99ab2c49
commit 0cda7c2f13
2 changed files with 4 additions and 2 deletions

View File

@@ -632,13 +632,13 @@ these classes provide a subset or almost complete STL API.
Related Overviews: @ref overview_container
@li wxArray<T>: A type-safe dynamic array implementation (macro based)
@li wxArray<T>: Legacy dynamic array, use srd::vector or wxVector instead.
@li wxArrayString: An efficient container for storing wxString objects
@li wxHashMap<T>: A type-safe hash map implementation (macro based)
@li wxHashSet<T>: A type-safe hash set implementation(macro based)
@li wxHashTable: A simple hash table implementation (deprecated, use wxHashMap)
@li wxList<T>: A type-safe linked list implementation (macro based)
@li wxVector<T>: Template base vector implementation identical to std::vector
@li wxVector<T>: Template base vector implementation identical to std::vector.