]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/checkbox.h
added some trivial macros for exception handling
[wxWidgets.git] / include / wx / checkbox.h
index c8a126923e20fa4074fb9b04e5615568d40a1b34..a011252b4321a2f423ac916684411374e1af38e6 100644 (file)
@@ -12,6 +12,8 @@
 #ifndef _WX_CHECKBOX_H_BASE_
 #define _WX_CHECKBOX_H_BASE_
 
+#include "wx/defs.h"
+
 #if wxUSE_CHECKBOX
 
 #include "wx/control.h"
@@ -25,11 +27,16 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxCheckBoxNameStr;
 class WXDLLEXPORT wxCheckBoxBase : public wxControl
 {
 public:
+    wxCheckBoxBase() { }
+
     // set/get the checked status of the listbox
     virtual void SetValue(bool value) = 0;
     virtual bool GetValue() const = 0;
 
     bool IsChecked() const { return GetValue(); }
+
+private:
+    DECLARE_NO_COPY_CLASS(wxCheckBoxBase)
 };
 
 #if defined(__WXUNIVERSAL__)