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-10 17:11:03 +02:00

29 lines
484 B
C++

#ifndef TUNNELCONNECTION_H
#define TUNNELCONNECTION_H
#include "proxyclient.h"
namespace remoteproxy {
class TunnelConnection
{
public:
TunnelConnection(ProxyClient *clientOne = nullptr, ProxyClient *clientTwo = nullptr);
QString token() const;
ProxyClient *clientOne() const;
ProxyClient *clientTwo() const;
bool isValid() const;
private:
ProxyClient *m_clientOne = nullptr;
ProxyClient *m_clientTwo = nullptr;
};
}
#endif // TUNNELCONNECTION_H