blob: 97ee1df988da8552b092434029ff574f3500516c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
This file is part of the KDE libraries
SPDX-FileCopyrightText: 1999 Preston Brown <pbrown@kde.org>
SPDX-FileCopyrightText: 1997 Matthias Kalle Dalheimer <kalle@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef KCONFIGBASE_P_H
#define KCONFIGBASE_P_H
#include <QSharedData>
class KConfigBasePrivate : public QSharedData
{
};
#endif
|