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-09 22:20:59 +02:00

27 lines
364 B
C++

#include "proxyconnection.h"
namespace remoteproxyclient {
ProxyConnection::ProxyConnection(QObject *parent) : QObject(parent)
{
}
ProxyConnection::~ProxyConnection()
{
}
bool ProxyConnection::allowSslErrors() const
{
return m_allowSslErrors;
}
void ProxyConnection::setAllowSslErrors(bool allowSslErrors)
{
m_allowSslErrors = allowSslErrors;
}
}