rssguard/src/core/basewebpage.h
2013-08-30 17:40:17 +02:00

19 lines
331 B
C++

#ifndef BASEWEBPAGE_H
#define BASEWEBPAGE_H
#include <QWebPage>
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