File indexing completed on 2024-12-22 04:55:32

0001 /*
0002    SPDX-FileCopyrightText: 2016-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include <PimCommon/AbstractGenericPlugin>
0010 
0011 #include "kaddressbook_importexport_export.h"
0012 
0013 namespace KAddressBookImportExport
0014 {
0015 /** Import/export plugin. */
0016 class KADDRESSBOOK_IMPORTEXPORT_EXPORT Plugin : public PimCommon::AbstractGenericPlugin
0017 {
0018     Q_OBJECT
0019 public:
0020     explicit Plugin(QObject *parent = nullptr);
0021     ~Plugin() override;
0022 };
0023 }