File indexing completed on 2024-04-28 05:25:45

0001 /*
0002  * SPDX-FileCopyrightText: 2019 Bhushan Shah <bshah@kde.org>
0003  *
0004  * SPDX-License-Identifier: GPL-3.0-or-later
0005  */
0006 
0007 #ifndef KPEOPLEACTIONSPLUGIN_H
0008 #define KPEOPLEACTIONSPLUGIN_H
0009 
0010 #include <KPeopleBackend/AbstractPersonAction>
0011 #include <QObject>
0012 
0013 class KPeopleActionsPlugin : public KPeople::AbstractPersonAction
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     KPeopleActionsPlugin(QObject *parent, const QVariantList &args);
0019     QList<QAction *> actionsForPerson(const KPeople::PersonData &data, QObject *parent) const override;
0020 };
0021 
0022 #endif // KPEOPLEACTIONSPLUGIN_H