]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: config.h | |
3 | // Purpose: wxConfig base header | |
4 | // Author: wxWidgets Team | |
5 | // Modified by: | |
6 | // Created: | |
7 | // Copyright: (c) wxWidgets Team | |
8 | // RCS-ID: $Id$ | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_CONFIG_H_BASE_ | |
13 | #define _WX_CONFIG_H_BASE_ | |
14 | ||
15 | #include "wx/defs.h" | |
16 | #include "wx/confbase.h" | |
17 | ||
18 | #if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE | |
19 | # ifdef __WIN32__ | |
20 | # include "wx/msw/regconf.h" | |
21 | # else | |
22 | # include "wx/msw/iniconf.h" | |
23 | # endif | |
24 | #elif defined(__WXPALMOS__) && wxUSE_CONFIG_NATIVE | |
25 | # include "wx/palmos/prefconf.h" | |
26 | #else | |
27 | # include "wx/fileconf.h" | |
28 | #endif | |
29 | ||
30 | #endif | |
31 | // _WX_CONFIG_H_BASE_ |