]>
git.saurik.com Git - wxWidgets.git/blob - interface/wx/msw/regconf.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxRegConfig
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
12 wxRegConfig implements the wxConfigBase interface for
13 storing and retrieving configuration information using Windows registry.
15 This class is used by default for wxConfig on Windows platforms; see wxFileConfig
16 for an alternative you may want to use (also on Windows).
23 class wxRegConfig
: public wxConfigBase
27 The wxRegConfig constructor. For more info see the docs for the
28 wxConfigBase::wxConfigBase() constructor.
30 Note that wxRegConfig's @a style argument defaults to @c wxCONFIG_USE_GLOBAL_FILE,
31 i.e. to the use of the @c HKLM key (also known as "HKEY_LOCAL_MACHINE").
33 wxRegConfig(const wxString
& appName
= wxEmptyString
,
34 const wxString
& vendorName
= wxEmptyString
,
35 const wxString
& localFilename
= wxEmptyString
,
36 const wxString
& globalFilename
= wxEmptyString
,
37 long style
= wxCONFIG_USE_GLOBAL_FILE
);