File indexing completed on 2024-06-02 05:26:13

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 "korganizerplugininterface.h"
0008 
0009 KOrganizerPluginInterface::KOrganizerPluginInterface(QObject *parent)
0010     : PimCommon::PluginInterface(parent)
0011 {
0012     setPluginName(QStringLiteral("korganizer"));
0013     setPluginDirectory(QStringLiteral("korganizer/mainview"));
0014 }
0015 
0016 KOrganizerPluginInterface::~KOrganizerPluginInterface() = default;
0017 
0018 KOrganizerPluginInterface *KOrganizerPluginInterface::self()
0019 {
0020     static KOrganizerPluginInterface s_self;
0021     return &s_self;
0022 }
0023 
0024 #include "moc_korganizerplugininterface.cpp"