#ifndef _WX_VALTEXTH__
#define _WX_VALTEXTH__
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "valtext.h"
#endif
#if wxUSE_VALIDATORS
+#include "wx/textctrl.h"
#include "wx/validate.h"
#define wxFILTER_NONE 0x0000
return TRUE;
}
+
+private:
+// Cannot use
+// DECLARE_NO_COPY_CLASS(wxTextValidator)
+// because copy constructor is explicitly declared above;
+// but no copy assignment operator is defined, so declare
+// it private to prevent the compiler from defining it:
+ wxTextValidator& operator=(const wxTextValidator&);
};
#endif