This repository has been archived on 2026-05-31. You can view files and clone it, but cannot push or open issues or pull requests.

30 lines
418 B
C++

#include "proxyconnection.h"
namespace remoteproxyclient {
ProxyConnection::ProxyConnection(QObject *parent) : QObject(parent)
{
}
bool ProxyConnection::connected()
{
return m_connected;
}
void ProxyConnection::setConnected(bool connected)
{
if (m_connected == connected)
return;
m_connected = connected;
emit connectedChanged(m_connected);
}
ProxyConnection::~ProxyConnection()
{
}
}