Jared
Jared

Reputation: 6025

What is the most popular way to implement configuration settings like about:config in Firefox?

I would like to implement/use-existing a cross platform configuration settings tool like about:config in Firefox. It would have to work on Windows and Mac. Are there any libraries or design patterns out there that people recommend?

Also, if I were to use a library, it would have to be "free as in beer" and couldn't be a GPL license. The apache license would be ok.

The Windows side uses C++/MFC and the Mac side uses Objective-C. The configuration file would have to be read on both platforms, but they don't have to share the same library.

Upvotes: 1

Views: 256

Answers (1)

cgp
cgp

Reputation: 41401

Properties files/ini files.

Upvotes: 1

Related Questions