#include "settings.h" QString Settings::_path = QString(""); Settings::Settings(QObject *parent) : QSettings(_path, QSettings::IniFormat, parent) { } Settings::~Settings() { this->sync(); } void Settings::setFilepath(const QString &path) { qDebug("Setting config file location to: %s", qUtf8Printable(path)); _path = path; }