#ifndef CONFIGURER_H #define CONFIGURER_H #include #include class Configurer { public: QString conf(const QString &key); void changConf(const QString &key, const QString &value); void changConf(const QMap &maps); QString processName(); protected: QString confName(); QList readConf(); void writeConf(const QString &data); QString newLineChars(); }; #endif // CONFIGURER_H