14 lines
202 B
C++
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;
|
|
}
|