]>
Commit | Line | Data |
---|---|---|
2ecf902b WS |
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 | ||
26ac5fad JS |
12 | #ifndef _WX_CONFIG_H_BASE_ |
13 | #define _WX_CONFIG_H_BASE_ | |
14 | ||
2ecf902b | 15 | #include "wx/defs.h" |
26ac5fad JS |
16 | #include "wx/confbase.h" |
17 | ||
16193c2b | 18 | #if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE |
23a59c2c WS |
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" | |
26ac5fad JS |
26 | #else |
27 | # include "wx/fileconf.h" | |
c801d85f KB |
28 | #endif |
29 | ||
c801d85f | 30 | #endif |
26ac5fad | 31 | // _WX_CONFIG_H_BASE_ |