1/*
2 SPDX-FileCopyrightText: 2015 Martin Klapetek <mklapetek@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#include "calendareventsplugin.h"
8
9namespace CalendarEvents
10{
11CalendarEventsPlugin::CalendarEventsPlugin(QObject *parent)
12 : QObject(parent)
13{
14}
15
16CalendarEventsPlugin::~CalendarEventsPlugin()
17{
18}
19
20ShowEventInterface::~ShowEventInterface() = default;
21
22}
23
24#include "moc_calendareventsplugin.cpp"
25

source code of kdeclarative/src/calendarevents/calendareventsplugin.cpp