096deea9ec
This was done mostly because I wanted to get rid of the Resource dependency in AbstractDataSource so I can make our xwl bridge direct, but this also fixes up some issues with object lifespan present in the previous version and keeps all our clipboard code in-line.
13 lines
323 B
C++
13 lines
323 B
C++
/*
|
|
SPDX-FileCopyrightText: 2020 David Edmundson <davidedmundson@kde.org>
|
|
|
|
SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
|
|
*/
|
|
|
|
#include "abstract_data_source.h"
|
|
|
|
using namespace KWaylandServer;
|
|
|
|
AbstractDataSource::AbstractDataSource(QObject *parent)
|
|
: QObject(parent)
|
|
{}
|