1 /*
2    SPDX-FileCopyrightText: 2015-2021 Laurent Montel <montel@kde.org>
3 
4    SPDX-License-Identifier: GPL-2.0-or-later
5 */
6 
7 #include "korganizerplugininterface.h"
8 
KOrganizerPluginInterface(QObject * parent)9 KOrganizerPluginInterface::KOrganizerPluginInterface(QObject *parent)
10     : PimCommon::PluginInterface(parent)
11 {
12     setPluginName(QStringLiteral("korganizer"));
13     setPluginDirectory(QStringLiteral("korganizer/mainview"));
14 }
15 
~KOrganizerPluginInterface()16 KOrganizerPluginInterface::~KOrganizerPluginInterface()
17 {
18 }
19 
self()20 KOrganizerPluginInterface *KOrganizerPluginInterface::self()
21 {
22     static KOrganizerPluginInterface s_self;
23     return &s_self;
24 }
25