bigsnitch/proxyhandler.h
2021-03-19 17:40:33 +01:00

18 lines
286 B
C++

#pragma once
#include <include/api.h>
#include <include/proxyinterface.h>
#include <QObject>
namespace http {
class ProxyHandler
{
private:
std::map<std::string, ProxyInterface*, QThread*> proxies;
public:
bool loadPlugin(QObject *proxy);
QStringList getProxies();
};
}