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 | |
9 | namespace CalendarEvents |
10 | { |
11 | CalendarEventsPlugin::CalendarEventsPlugin(QObject *parent) |
12 | : QObject(parent) |
13 | { |
14 | } |
15 | |
16 | CalendarEventsPlugin::~CalendarEventsPlugin() |
17 | { |
18 | } |
19 | |
20 | ShowEventInterface::~ShowEventInterface() = default; |
21 | |
22 | } |
23 | |
24 | #include "moc_calendareventsplugin.cpp" |
25 |