Pimcommon

customtoolspluginmanager.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 "pimcommon_export.h"
10#include <QObject>
11#include <memory>
12namespace PimCommon
13{
14class CustomToolsPlugin;
15class CustomToolsPluginManagerPrivate;
16/**
17 * @brief The CustomToolsPluginManager class
18 * @author Laurent Montel <montel@kde.org>
19 */
20class PIMCOMMON_EXPORT CustomToolsPluginManager : public QObject
21{
22 Q_OBJECT
23public:
24 static CustomToolsPluginManager *self();
25
26 explicit CustomToolsPluginManager(QObject *parent = nullptr);
28
29 [[nodiscard]] QList<PimCommon::CustomToolsPlugin *> pluginsList() const;
30
31private:
32 std::unique_ptr<CustomToolsPluginManagerPrivate> const d;
33};
34}
The CustomToolsPluginManager class.
folderdialogacltab.h
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:17:23 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.