bigsnitch/proxyhandler.cpp
2021-01-09 11:17:50 +01:00

14 lines
202 B
C++

#include "proxyhandler.h"
bool http::ProxyHandler::loadPlugin(QObject *proxy)
{
auto inst = qobject_cast<ProxyInterface*>(proxy);
if(!inst) {
return false;
}
return true;
}