mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-05-20 07:26:58 -04:00
12 lines
273 B
C++
12 lines
273 B
C++
#ifndef ENHANCEDWEBPAGE_H
|
|
#define ENHANCEDWEBPAGE_H
|
|
|
|
#include <QtWebEngineWidgets/qwebenginepage.h>
|
|
|
|
class EnhancedWebPage : public QWebEnginePage {
|
|
protected:
|
|
bool certificateError(const QWebEngineCertificateError &certificateError);
|
|
};
|
|
|
|
#endif // !ECHANCEDWEBPAG
|