2021-01-18 07:28:54 +00:00
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2013-01-14 23:42:38 +00:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2013-01-14 23:42:38 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2013-08-25 20:48:41 +00:00
|
|
|
#pragma once
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-01-14 23:42:38 +00:00
|
|
|
#include <QString>
|
|
|
|
#include <QVariant>
|
2013-08-27 20:32:41 +00:00
|
|
|
#include <QIODevice>
|
2013-08-25 20:48:41 +00:00
|
|
|
|
2013-01-14 23:42:38 +00:00
|
|
|
// Sectionless INI parser (for instance config files)
|
2021-07-25 17:11:59 +00:00
|
|
|
class INIFile : public QMap<QString, QVariant>
|
2013-01-14 23:42:38 +00:00
|
|
|
{
|
|
|
|
public:
|
2018-07-15 12:51:05 +00:00
|
|
|
explicit INIFile();
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2018-07-15 12:51:05 +00:00
|
|
|
bool loadFile(QByteArray file);
|
|
|
|
bool loadFile(QString fileName);
|
|
|
|
bool saveFile(QString fileName);
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2018-07-15 12:51:05 +00:00
|
|
|
QVariant get(QString key, QVariant def) const;
|
|
|
|
void set(QString key, QVariant val);
|
|
|
|
static QString unescape(QString orig);
|
|
|
|
static QString escape(QString orig);
|
2013-01-14 23:42:38 +00:00
|
|
|
};
|