File indexing completed on 2024-05-05 16:07:09

0001 /*
0002     SPDX-FileCopyrightText: 2015 Martin Klapetek <mklapetek@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #include "calendareventsplugin.h"
0008 
0009 namespace CalendarEvents
0010 {
0011 CalendarEventsPlugin::CalendarEventsPlugin(QObject *parent)
0012     : QObject(parent)
0013 {
0014 }
0015 
0016 CalendarEventsPlugin::~CalendarEventsPlugin()
0017 {
0018 }
0019 
0020 ShowEventInterface::~ShowEventInterface() = default;
0021 
0022 }
0023 
0024 #include "moc_calendareventsplugin.cpp"