kwin/src/wayland/primaryselectiondevicemanager_v1_interface.h
Vlad Zahorodnii 2af2ba6d4c Use common doxygen comment terminator style
In plasma code, it's more common to see `/** ... */` doxygen comments
rather than `/** ... **/`.

This change fixes up doxygen comment terminators to prevent inconsistency
issues.
2021-03-23 08:14:02 +00:00

40 lines
1 KiB
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
*/
#pragma once
#include <QObject>
#include <KWaylandServer/kwaylandserver_export.h>
namespace KWaylandServer
{
class Display;
class PrimarySelectionSourceV1Interface;
class PrimarySelectionDeviceManagerV1InterfacePrivate;
class PrimarySelectionDeviceV1Interface;
/**
* @brief Represents the Global for zwp_primary_selection_manager_v1 interface.
*
*/
class KWAYLANDSERVER_EXPORT PrimarySelectionDeviceManagerV1Interface : public QObject
{
Q_OBJECT
public:
explicit PrimarySelectionDeviceManagerV1Interface(Display *display, QObject *parent = nullptr);
~PrimarySelectionDeviceManagerV1Interface();
Q_SIGNALS:
void dataSourceCreated(KWaylandServer::PrimarySelectionSourceV1Interface *dataSource);
void dataDeviceCreated(KWaylandServer::PrimarySelectionDeviceV1Interface *dataDevice);
private:
QScopedPointer<PrimarySelectionDeviceManagerV1InterfacePrivate> d;
};
}