X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c0c133e13b36a923c65f94499554e432bc3a0daa..66c2bf7b1d9326fb650acfaae22ec50528cfbf7c:/include/wx/checklst.h diff --git a/include/wx/checklst.h b/include/wx/checklst.h index 3d38f28810..3c54304d0e 100644 --- a/include/wx/checklst.h +++ b/include/wx/checklst.h @@ -4,7 +4,6 @@ // Author: Vadim Zeitlin // Modified by: // Created: 12.09.00 -// RCS-ID: $Id$ // Copyright: (c) Vadim Zeitlin // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// @@ -12,6 +11,8 @@ #ifndef _WX_CHECKLST_H_BASE_ #define _WX_CHECKLST_H_BASE_ +#include "wx/defs.h" + #if wxUSE_CHECKLISTBOX #include "wx/listbox.h" @@ -35,6 +36,8 @@ public: virtual bool IsChecked(unsigned int item) const = 0; virtual void Check(unsigned int item, bool check = true) = 0; + virtual unsigned int GetCheckedItems(wxArrayInt& checkedItems) const; + wxDECLARE_NO_COPY_CLASS(wxCheckListBoxBase); };