supports member templates.
@code
- template class Arc, class T = typename Arc::entry_type*
+ template<class Arc, class T = typename Arc::entry_type*>
class wxArchiveIterator
{
// this constructor creates an 'end of sequence' object
The first template parameter should be the type of archive input stream
(e.g. wxArchiveInputStream) and the second can either be a pointer to an entry
- (e.g. wxArchiveEntry*), or a string/pointer pair (e.g. std::pairwxString,
- wxArchiveEntry*).
+ (e.g. wxArchiveEntry*), or a string/pointer pair
+ (e.g. std::pair<wxString,wxArchiveEntry*>).
The @c wx/archive.h header defines the following typedefs:
@beginEventTable{wxAuiNotebookEvent}
- @event{EVT_AUINOTEBOOK_PAGE_CLOSE(id, func)}
- @todo Provide description.
- @event{EVT_AUINOTEBOOK_PAGE_CHANGED(id, func)}
- @todo Provide description.
- @event{EVT_AUINOTEBOOK_PAGE_CHANGING(id, func)}
- @todo Provide description.
- @event{EVT_AUINOTEBOOK_BUTTON(id, func)}
- @todo Provide description.
- @event{EVT_AUINOTEBOOK_BEGIN_DRAG(id, func)}
- @todo Provide description.
- @event{EVT_AUINOTEBOOK_END_DRAG(id, func)}
- @todo Provide description.
- @event{EVT_AUINOTEBOOK_DRAG_MOTION(id, func)}
- @todo Provide description.
- @event{EVT_AUINOTEBOOK_ALLOW_DND(id, func)}
- @todo Provide description.
+ @event{EVT_AUINOTEBOOK_PAGE_CLOSE(id, func)}
+ Provide description.
+ @event{EVT_AUINOTEBOOK_PAGE_CHANGED(id, func)}
+ Provide description.
+ @event{EVT_AUINOTEBOOK_PAGE_CHANGING(id, func)}
+ Provide description.
+ @event{EVT_AUINOTEBOOK_BUTTON(id, func)}
+ Provide description.
+ @event{EVT_AUINOTEBOOK_BEGIN_DRAG(id, func)}
+ Provide description.
+ @event{EVT_AUINOTEBOOK_END_DRAG(id, func)}
+ Provide description.
+ @event{EVT_AUINOTEBOOK_DRAG_MOTION(id, func)}
+ Provide description.
+ @event{EVT_AUINOTEBOOK_ALLOW_DND(id, func)}
+ Provide description.
@endEventTable
+ @todo provide description for the events above.
+
@library{wxaui}
@category{aui}
*/