Mailcommon

resourcereadconfigfile.h
1 /*
2  SPDX-FileCopyrightText: 2015-2023 Laurent Montel <[email protected]>
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 
14 namespace MailCommon
15 {
16 class ResourceReadConfigFilePrivate;
17 class MAILCOMMON_EXPORT ResourceReadConfigFile
18 {
19 public:
20  ResourceReadConfigFile(const QString &resourceName);
21  ~ResourceReadConfigFile();
22 
23  KConfigGroup group(const QString &name) const;
24 
25 private:
26  std::unique_ptr<ResourceReadConfigFilePrivate> const d;
27 };
28 }
The filter dialog.
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Wed Sep 27 2023 03:59:52 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.