]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/config.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxConfig base header
4 // Author: Julian Smart
7 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_CONFIG_H_BASE_
13 #define _WX_CONFIG_H_BASE_
19 #include "wx/confbase.h"
21 // ----------------------------------------------------------------------------
22 // define the native wxConfigBase implementation
23 // ----------------------------------------------------------------------------
25 // under Windows we prefer to use the native implementation but can be forced
26 // to use the file-based one
27 #if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
28 #include "wx/msw/regconf.h"
29 #define wxConfig wxRegConfig
30 #elif defined(__WXOS2__) && wxUSE_CONFIG_NATIVE
31 #include "wx/os2/iniconf.h"
32 #define wxConfig wxIniConfig
33 #elif defined(__WXPALMOS__) && wxUSE_CONFIG_NATIVE
34 #include "wx/palmos/prefconf.h"
35 #define wxConfig wxPrefConfig
36 #else // either we're under Unix or wish to always use config files
37 #include "wx/fileconf.h"
38 #define wxConfig wxFileConfig
41 #endif // wxUSE_CONFIG
43 #endif // _WX_CONFIG_H_BASE_