#ifndef UTIL_H_ #define UTIL_H_ // Helper for getting a settings object in various places, so if you ever change the organization, location, // file format or anything, you won't have to edit in 100 places. // Use like this: // settings.value("somekey") #define CERTSTORAGE ".config/openslx/pvs2/" #define SETTINGS(name) \ QSettings name (QSettings::IniFormat, QSettings::SystemScope, "openslx/pvs2", "pvs2"); \ name.setIniCodec("UTF-8"); namespace Util { } #endif /* UTIL_H_ */