1 | /* |
---|---|
2 | This file is part of the KDE project |
3 | SPDX-FileCopyrightText: 2012 Dawit Alemayehu <adawit@kde.org> |
4 | |
5 | SPDX-License-Identifier: LGPL-2.0-or-later |
6 | */ |
7 | |
8 | #include "listingnotificationextension.h" |
9 | |
10 | #include "readonlypart.h" |
11 | |
12 | class KParts::ListingNotificationExtensionPrivate |
13 | { |
14 | }; |
15 | |
16 | KParts::ListingNotificationExtension::ListingNotificationExtension(KParts::ReadOnlyPart *parent) |
17 | : QObject(parent) |
18 | , d(nullptr) |
19 | { |
20 | } |
21 | |
22 | KParts::ListingNotificationExtension::~ListingNotificationExtension() |
23 | { |
24 | } |
25 | |
26 | KParts::ListingNotificationExtension *KParts::ListingNotificationExtension::childObject(QObject *obj) |
27 | { |
28 | return obj->findChild<KParts::ListingNotificationExtension *>(aName: QString(), options: Qt::FindDirectChildrenOnly); |
29 | } |
30 | |
31 | KParts::ListingNotificationExtension::NotificationEventTypes KParts::ListingNotificationExtension::supportedNotificationEventTypes() const |
32 | { |
33 | return None; |
34 | } |
35 | |
36 | #include "moc_listingnotificationextension.cpp" |
37 |