// For license of this file, see /LICENSE.md. #ifndef URLINTERCEPTOR_H #define URLINTERCEPTOR_H #include #include class UrlInterceptor : public QObject { Q_OBJECT public: explicit UrlInterceptor(QObject* parent = nullptr) : QObject(parent) { } virtual void interceptRequest(QWebEngineUrlRequestInfo& info) = 0; }; #endif // URLINTERCEPTOR_H