/*
|
|
SPDX-FileCopyrightText: 2015-2021 Laurent Montel <montel@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <PimCommon/GenericPlugin>
|
|
|
|
#include <PimCommonAkonadi/GenericPluginInterface>
|
|
|
|
#include <QVariant>
|
|
|
|
class pEpPlugin : public PimCommon::GenericPlugin
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit pEpPlugin(QObject *parent = nullptr, const QList<QVariant> & = QList<QVariant>());
|
|
~pEpPlugin() override;
|
|
|
|
PimCommon::GenericPluginInterface *createInterface(QObject *parent = nullptr) override;
|
|
};
|