kwin/src/wayland/abstract_drop_handler.cpp

18 lines
394 B
C++
Raw Normal View History

/*
SPDX-FileCopyrightText: 2020 David Edmundson <davidedmundson@kde.org>
SPDX-FileCopyrightText: 2021 David Redondo <kde@david-redondo.de>
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
*/
#include "abstract_drop_handler.h"
namespace KWaylandServer
{
AbstractDropHandler::AbstractDropHandler(QObject *parent)
: QObject(parent)
{
}
}