1 | /* |
---|---|
2 | This file is part of the KDE project |
3 | SPDX-FileCopyrightText: 2009 Harald Hvaal <haraldhv@stud.ntnu.no> |
4 | |
5 | SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only |
6 | */ |
7 | |
8 | #include "dndpopupmenuplugin.h" |
9 | |
10 | using namespace KIO; |
11 | |
12 | DndPopupMenuPlugin::DndPopupMenuPlugin(QObject *parent) |
13 | : QObject(parent) |
14 | { |
15 | } |
16 | |
17 | DndPopupMenuPlugin::~DndPopupMenuPlugin() |
18 | { |
19 | } |
20 | |
21 | #include "moc_dndpopupmenuplugin.cpp" |
22 |