We want to persist some user settings int he GUI part of our code. I used to do Win32 programming exclusively and the typical way this was done was with registry settings.

I assume that this should be done with configuration files, but was wondering if there was a library or cross platform wrapper that made key/value pair persistence very easy.

link|improve this question

59% accept rate
feedback

8 Answers

Boost.PropertyTree supports XML, JSON, INI config files.

link|improve this answer
I'll look at it - thanks – Tim May 9 '10 at 0:44
feedback

Qt's QSettings class handles this:

http://doc.qt.nokia.com/4.6/qsettings.html

link|improve this answer
feedback

There is also JSON for a lighter alternative of XML. Lots of implementations on that page too.

link|improve this answer
Sounds good to me. I will check it out. Thanks – Tim May 9 '10 at 0:43
feedback

Qt 4 has a class for it, named QSettings. Looks exactly like what you need.

link|improve this answer
feedback

Why not use an XML as the configuration file. Then you only have to find a cross platform XML library which is easier IMO. Here is a list of nice XML parsing solutions for C++.

link|improve this answer
I am not a fan of XML - it is far too heavyweight and I find it pretty unreadable. I try not to propagate this standard if I can help it. – Tim May 9 '10 at 0:43
feedback

Old school Berkley DB comes to mind.

link|improve this answer
feedback

Have a look at Tokyo Cabinet or at Embedded InnoDB.

link|improve this answer
feedback

In the old days we used .ini files in windows. Here is a portable version of an ini file read/write library
It will work on Windows as well as Linux.

link|improve this answer
This looks pretty good. – Tim May 9 '10 at 2:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.