mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-14 00:07:36 +02:00
26 lines
651 B
C
26 lines
651 B
C
//
|
|
// 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 <QSettings>
|
|
|
|
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
|