1 | /* |
---|---|
2 | This file is part of the KDE project |
3 | SPDX-FileCopyrightText: 2015 Olivier Goffart <ogoffart@woboq.com> |
4 | |
5 | SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
6 | */ |
7 | |
8 | #include "koverlayiconplugin.h" |
9 | |
10 | KOverlayIconPlugin::KOverlayIconPlugin(QObject *parent) |
11 | : QObject(parent) |
12 | { |
13 | } |
14 | |
15 | KOverlayIconPlugin::~KOverlayIconPlugin() |
16 | { |
17 | } |
18 | |
19 | #include "moc_koverlayiconplugin.cpp" |
20 |