05fc3aef53
Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Task-number: QTBUG-67283 Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
45 lines
1.1 KiB
C
45 lines
1.1 KiB
C
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
#ifndef CONFIGFILE_H
|
|
#define CONFIGFILE_H
|
|
|
|
#include <QIODevice>
|
|
#include <QList>
|
|
#include <QMap>
|
|
#include <QStringList>
|
|
|
|
struct ConfigFile
|
|
{
|
|
struct Entry
|
|
{
|
|
inline Entry() : lineNumber(-1) {}
|
|
int lineNumber;
|
|
QString key;
|
|
QString value;
|
|
};
|
|
struct Section : public QList<Entry>
|
|
{
|
|
inline bool contains(const QString &key) const
|
|
{
|
|
for (int i = 0; i < count(); ++i)
|
|
if (at(i).key == key)
|
|
return true;
|
|
return false;
|
|
}
|
|
inline QString value(const QString &key, const QString &defaultValue = QString()) const
|
|
{
|
|
for (int i = 0; i < count(); ++i)
|
|
if (at(i).key == key)
|
|
return at(i).value;
|
|
return defaultValue;
|
|
}
|
|
};
|
|
typedef QMap<QString, Section> SectionMap;
|
|
|
|
static SectionMap parse(const QString &fileName);
|
|
static SectionMap parse(QIODevice *dev);
|
|
};
|
|
|
|
#endif // CONFIGFILE_H
|
|
|