Does
Qthas something likeQSettings, but for local scopes?
I am seeking for a data structure with the same methods, but not specific for APPLICATION.
I mean, I want to construct local (for example, exporting settings) settings from file (xml, for example) and use them in local scope – without polluting global application settings.
Is that possible (with QSettings or some other class)? How should I construct the object then?
You can use
to set the format (as specified in the doc)
the scope:
So if you are on Windows and want to write User-specific settings, you would use the IniFormat and the UserScope values and specify the path where you want to write your settings in the path variable.
Hope this helps.