15 lines
309 B
C++
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:
|
|
|
|
};
|