File indexing completed on 2024-11-24 04:43:02

0001 /*
0002    SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "mergecontactsplugin.h"
0008 #include "mergecontactsplugininterface.h"
0009 #include <KPluginFactory>
0010 
0011 K_PLUGIN_CLASS_WITH_JSON(MergeContactsPlugin, "kaddressbook_mergecontactsplugin.json")
0012 
0013 MergeContactsPlugin::MergeContactsPlugin(QObject *parent, const QList<QVariant> &)
0014     : PimCommon::GenericPlugin(parent)
0015 {
0016 }
0017 
0018 MergeContactsPlugin::~MergeContactsPlugin() = default;
0019 
0020 PimCommon::GenericPluginInterface *MergeContactsPlugin::createInterface(QObject *parent)
0021 {
0022     return new MergeContactsPluginInterface(parent);
0023 }
0024 
0025 #include "mergecontactsplugin.moc"
0026 
0027 #include "moc_mergecontactsplugin.cpp"