blob: 2744c15300ac39016ae5e96f2599f80ca16bf79c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
This file is part of the KDE libraries
SPDX-FileCopyrightText: 2007 Thiago Macieira <thiago@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#ifndef KCONFIGGROUP_P_H
#define KCONFIGGROUP_P_H
#include "kconfiggroup.h"
#include <QVariant>
class KConfigGroup;
struct KConfigGroupGui {
typedef bool (*kReadEntryGui)(const QByteArray &data, const char *key, const QVariant &input, QVariant &output);
typedef bool (*kWriteEntryGui)(KConfigGroup *, const char *key, const QVariant &input, KConfigGroup::WriteConfigFlags flags);
kReadEntryGui readEntryGui;
kWriteEntryGui writeEntryGui;
};
extern KCONFIGCORE_EXPORT KConfigGroupGui _kde_internal_KConfigGroupGui;
#endif
|