Pimcommon

addressesslineeditpluginmanager.h
1/*
2 SPDX-FileCopyrightText: 2017-2024 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "pimcommonakonadi_export.h"
10#include <QObject>
11#include <memory>
12
13namespace PimCommon
14{
15class AddressessLineEditAbstractPlugin;
16class AddressessLineEditPluginManagerPrivate;
17/**
18 * @brief The AddressessLineEditPluginManager class
19 * @author Laurent Montel <montel@kde.org>
20 */
21class PIMCOMMONAKONADI_EXPORT AddressessLineEditPluginManager : public QObject
22{
23 Q_OBJECT
24public:
25 explicit AddressessLineEditPluginManager(QObject *parent = nullptr);
27
29
30 [[nodiscard]] PimCommon::AddressessLineEditAbstractPlugin *plugin(const QString &identifier);
31 [[nodiscard]] QList<PimCommon::AddressessLineEditAbstractPlugin *> pluginsList() const;
32
33private:
34 std::unique_ptr<AddressessLineEditPluginManagerPrivate> const d;
35};
36}
The AddressessLineEditAbstractPlugin class.
The AddressessLineEditPluginManager 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.