git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1038
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#include "wx/defs.h"
#include "wx/debug.h"
#include "wx/object.h"
+#include "wx/string.h"
// due to circular header dependencies this function has to be declared here
// (normally it's found in utils.h which includes itself list.h...)
wxList(int key_type = wxKEY_NONE) : wxObjectList((wxKeyType)key_type) { }
// compatibility methods
+ void Sort(wxSortCompareFunction compfunc) { wxListBase::Sort(compfunc); }
+
int Number() const { return GetCount(); }
wxNode *First() const { return (wxNode *)GetFirst(); }
wxNode *Last() const { return (wxNode *)GetLast(); }