> Are Wx::IniConfig and Wx::FileConfig implemented?
Wx::FileCOnfig yes, Wx::IniConfig no; Wx::FileCOnfig is just
a generic implementation of Wx::IniConfig (Wx::IniConfig uses Win32 API,
Wx::FileConfig does not, and works on other platforms too)
> If so, how do you specify them instead of the system default
> (Wx::RegConfig in this case)?
> The config I have is too large for the registry and should be editable
> in a text editor.
>
> When I use BaseConfig everything works fine, but of course it writes to
> the registry on Windows.
Wx::ConfigBase::Set( Wx::FileConfig->new( ... ) );
HTH
Mattia
|