File indexing completed on 2025-01-19 04:46:45

0001 /*
0002    SPDX-FileCopyrightText: 2017-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <PimCommonAkonadi/GenericPluginInterface>
0010 
0011 class ExpertPluginInterface : public PimCommon::GenericPluginInterface
0012 {
0013 public:
0014     explicit ExpertPluginInterface(QObject *parent = nullptr);
0015     ~ExpertPluginInterface() override;
0016 
0017     void exec() override;
0018     void createAction(KActionCollection *ac) override;
0019 
0020 private:
0021     void slotActivated();
0022 };