blob: b2559d4960180a5c0e6fa294934acb7b94616df8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* SPDX-License-Identifier: GPL-2.0-only */
#pragma once
#include <QFile>
#include <QMap>
#include <QObject>
#include <QString>
namespace Configuration {
using Parameters = QMap<QString,QString>;
Parameters fromFile(const QString& curr_path);
bool toFile(const QString& curr_path, const Parameters& params);
}
|