]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: validate.cpp | |
3 | // Purpose: wxValidator | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "validate.h" | |
14 | #endif | |
15 | ||
16 | // For compilers that support precompilation, includes "wx.h". | |
17 | #include "wx/wxprec.h" | |
18 | ||
19 | #ifdef __BORLANDC__ | |
20 | #pragma hdrstop | |
21 | #endif | |
22 | ||
23 | #ifndef WX_PRECOMP | |
6de97a3b | 24 | #include "wx/wx.h" |
c801d85f KB |
25 | #endif |
26 | ||
27 | #include "wx/validate.h" | |
28 | ||
29 | const wxValidator wxDefaultValidator; | |
30 | ||
31 | #if !USE_SHARED_LIBRARY | |
32 | IMPLEMENT_DYNAMIC_CLASS(wxValidator, wxEvtHandler) | |
33 | #endif | |
34 | ||
35 | wxValidator::wxValidator(void) | |
36 | { | |
c67daf87 | 37 | m_validatorWindow = (wxWindow *) NULL; |
c801d85f KB |
38 | } |
39 | ||
40 | wxValidator::~wxValidator() | |
41 | { | |
42 | } | |
43 | ||
44 |