Mailcommon

resourcereadconfigfile.h
1/*
2 SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "mailcommon_export.h"
10#include <KConfigGroup>
11#include <QString>
12#include <memory>
13
14namespace MailCommon
15{
16class ResourceReadConfigFilePrivate;
17class MAILCOMMON_EXPORT ResourceReadConfigFile
18{
19public:
20 explicit ResourceReadConfigFile(const QString &resourceName);
21 ~ResourceReadConfigFile();
22
23 KConfigGroup group(const QString &name) const;
24
25private:
26 std::unique_ptr<ResourceReadConfigFilePrivate> const d;
27};
28}
The filter dialog.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:01 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.