#ifndef CONFIGENGINE_H #define CONFIGENGINE_H #include #include class ConfigEngine { public: ConfigEngine(); static void init(); // I like having things static D: static QString getValue(QString); static void setValue(QString, QString); static void saveConfig(); private: static QHash confmap; }; #endif // CONFIGENGINE_H