mirror of
https://github.com/deskflow/deskflow.git
synced 2026-07-04 21:04:59 +08:00
35 lines
649 B
C++
35 lines
649 B
C++
/*
|
|
* Deskflow -- mouse and keyboard sharing utility
|
|
* SPDX-FileCopyrightText: (C) 2012 - 2016 Symless Ltd.
|
|
* SPDX-FileCopyrightText: (C) 2006 Chris Schoeneman
|
|
* SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception
|
|
*/
|
|
|
|
#include "server/BaseClientProxy.h"
|
|
|
|
//
|
|
// BaseClientProxy
|
|
//
|
|
|
|
BaseClientProxy::BaseClientProxy(const std::string &name) : m_name(name)
|
|
{
|
|
// do nothing
|
|
}
|
|
|
|
void BaseClientProxy::setJumpCursorPos(int32_t x, int32_t y)
|
|
{
|
|
m_x = x;
|
|
m_y = y;
|
|
}
|
|
|
|
void BaseClientProxy::getJumpCursorPos(int32_t &x, int32_t &y) const
|
|
{
|
|
x = m_x;
|
|
y = m_y;
|
|
}
|
|
|
|
std::string BaseClientProxy::getName() const
|
|
{
|
|
return m_name;
|
|
}
|