File indexing completed on 2025-01-05 04:49:33

0001 /*
0002    SPDX-FileCopyrightText: 2015-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 AntiVirusPluginInterface : public PimCommon::GenericPluginInterface
0012 {
0013 public:
0014     explicit AntiVirusPluginInterface(QObject *parent = nullptr);
0015     ~AntiVirusPluginInterface() override;
0016 
0017     void exec() override;
0018     void createAction(KActionCollection *ac) override;
0019 
0020 private:
0021     void slotActivated();
0022 };