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.
2018-08-04 13:54:30 +02:00

24 lines
358 B
C++

#include "proxyclient.h"
ProxyClient::ProxyClient(const QUuid &clientId, QObject *parent) :
QObject(parent),
m_clientId(clientId)
{
}
QUuid ProxyClient::clientId() const
{
return m_clientId;
}
bool ProxyClient::authenticated() const
{
return m_authenticated;
}
bool ProxyClient::tunnelConnected() const
{
return m_tunnelConnected;
}