bigsnitch/plugins/mitmproxy/mitmproxy_network.h
2021-01-09 11:17:50 +01:00

15 lines
309 B
C++

#pragma once
#include "api.h"
#include "proxyinterface.h"
#include <QObject>
class mitmproxyPlugin : public QObject,
public http::ProxyInterface
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "bigsnitch.api.HTTPProxyInterface/100" FILE "mitmproxy.json")
Q_INTERFACES(http::ProxyInterface)
public:
};