// // SettingHelpers.h // libraries/shared/src // // Created by Clement on 9/13/16. // Copyright 2016 High Fidelity, Inc. // // Distributed under the Apache License, Version 2.0. // See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html // #ifndef hifi_SettingHelpers_h #define hifi_SettingHelpers_h #include extern const QSettings::Format JSON_FORMAT; QString settingsFilename(); bool readJSONFile(QIODevice& device, QSettings::SettingsMap& map); bool writeJSONFile(QIODevice& device, const QSettings::SettingsMap& map); void loadOldINIFile(QSettings& settings); #endif // hifi_SettingHelpers_h