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

27 lines
444 B
C++

#ifndef PROXYCLIENT_H
#define PROXYCLIENT_H
#include <QUuid>
#include <QObject>
class ProxyClient : public QObject
{
Q_OBJECT
public:
explicit ProxyClient(const QUuid &clientId, QObject *parent = nullptr);
QUuid clientId() const;
bool authenticated() const;
bool tunnelConnected() const;
private:
QUuid m_clientId;
bool m_authenticated = false;
bool m_tunnelConnected = false;
};
#endif // PROXYCLIENT_H