Files
deskflow/src/lib/server/ClientProxy1_2.h
sithlord48 1085df54ed refactor: Reuse compliance
build files and documentation: MIT
  images / sources: GPL-2.0-only
  breeze icons: LGPL-2.0-only
  Microsoft MSM file, vc redist license
2025-01-27 17:05:47 -05:00

24 lines
630 B
C++

/*
* Deskflow -- mouse and keyboard sharing utility
* SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd.
* SPDX-FileCopyrightText: (C) 2004 Chris Schoeneman
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
*/
#pragma once
#include "server/ClientProxy1_1.h"
class IEventQueue;
//! Proxy for client implementing protocol version 1.2
class ClientProxy1_2 : public ClientProxy1_1
{
public:
ClientProxy1_2(const std::string &name, deskflow::IStream *adoptedStream, IEventQueue *events);
~ClientProxy1_2();
// IClient overrides
virtual void mouseRelativeMove(int32_t xRel, int32_t yRel);
};