ConfigLib C++ configuration file library |
|
| Home Wiki Tutorial Download |
Welcome to ConfigLib, a C++ libraray for reading and writing
configuration files
The configLib project has four goals:
Any object with a default constructor, and increment operator, and serialization can be used. If the object doesn't have any of these and they can't be added, a function template can be defined to override the default behavior. How simple is it to get started? This is a complete configuration setting definition:
#include "configfile.h"
#include "configitem.h"
#include <string>
using namespace configlib;
configfile g_Config("configuration.conf");
configitem
For more details on how to use the library, look at the
wiki or the
tutorial.
|