#ifndef BASEWEBPAGE_H #define BASEWEBPAGE_H #include class BaseWebPage : public QWebPage { Q_OBJECT public: // Constructors and destructors. explicit BaseWebPage(QObject *parent = 0); virtual ~BaseWebPage(); protected: QWebPage *createWindow(WebWindowType type); }; #endif // BASEWEBPAGE_H