qspwebengineurlrequestinterceptor.h 469 B

123456789101112131415161718
  1. #ifndef QSPWEBENGINEURLREQUESTINTERCEPTOR_H
  2. #define QSPWEBENGINEURLREQUESTINTERCEPTOR_H
  3. #include <QObject>
  4. #include <QWebEngineUrlRequestInterceptor>
  5. class QspWebEngineUrlRequestInterceptor : public QWebEngineUrlRequestInterceptor
  6. {
  7. Q_OBJECT
  8. public:
  9. explicit QspWebEngineUrlRequestInterceptor(QObject *parent = 0);
  10. virtual void interceptRequest(QWebEngineUrlRequestInfo &info) Q_DECL_OVERRIDE;
  11. private:
  12. };
  13. #endif // QSPWEBENGINEURLREQUESTINTERCEPTOR_H