mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-04 21:04:59 +08:00
build files and documentation: MIT images / sources: GPL-2.0-only breeze icons: LGPL-2.0-only Microsoft MSM file, vc redist license
30 lines
732 B
C++
30 lines
732 B
C++
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2015 - 2016 Symless Ltd.
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "server/ClientProxy1_5.h"
|
|
|
|
class Server;
|
|
class IEventQueue;
|
|
|
|
//! Proxy for client implementing protocol version 1.6
|
|
class ClientProxy1_6 : public ClientProxy1_5
|
|
{
|
|
public:
|
|
ClientProxy1_6(const std::string &name, deskflow::IStream *adoptedStream, Server *server, IEventQueue *events);
|
|
~ClientProxy1_6();
|
|
|
|
virtual void setClipboard(ClipboardID id, const IClipboard *clipboard);
|
|
virtual bool recvClipboard();
|
|
|
|
private:
|
|
void handleClipboardSendingEvent(const Event &, void *);
|
|
|
|
private:
|
|
IEventQueue *m_events;
|
|
};
|