18 lines
286 B
C++
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();
|
|
};
|
|
|
|
}
|