File indexing completed on 2024-05-19 05:32:32

0001 /*
0002     SPDX-FileCopyrightText: 2020 David Edmundson <davidedmundson@kde.org>
0003     SPDX-FileCopyrightText: 2021 David Redondo <kde@david-redondo.de>
0004 
0005     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0006 */
0007 
0008 #include "abstract_drop_handler.h"
0009 
0010 namespace KWin
0011 {
0012 AbstractDropHandler::AbstractDropHandler(QObject *parent)
0013     : QObject(parent)
0014 {
0015 }
0016 
0017 }
0018 
0019 #include "moc_abstract_drop_handler.cpp"