Deskflow 1.22.0.197
Keyboard and mouse sharing utility
Loading...
Searching...
No Matches
ClientProxy1_2.h
Go to the documentation of this file.
1/*
2 * Deskflow -- mouse and keyboard sharing utility
3 * SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd.
4 * SPDX-FileCopyrightText: (C) 2004 Chris Schoeneman
5 * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
6 */
7
8#pragma once
9
11
12class IEventQueue;
13
16{
17public:
18 ClientProxy1_2(const std::string &name, deskflow::IStream *adoptedStream, IEventQueue *events);
19 ~ClientProxy1_2() override = default;
20
21 // IClient overrides
22 void mouseRelativeMove(int32_t xRel, int32_t yRel) override;
23};
static const struct sockaddr FAR * name
Definition ArchNetworkWinsock.cpp:27
ClientProxy1_1(const std::string &name, deskflow::IStream *adoptedStream, IEventQueue *events)
Definition ClientProxy1_1.cpp:20
void mouseRelativeMove(int32_t xRel, int32_t yRel) override
Notify of mouse motion.
Definition ClientProxy1_2.cpp:23
~ClientProxy1_2() override=default
ClientProxy1_2(const std::string &name, deskflow::IStream *adoptedStream, IEventQueue *events)
Definition ClientProxy1_2.cpp:17
Event queue interface.
Definition IEventQueue.h:32
Bidirectional stream interface.
Definition IStream.h:24