rssguard/src/core/webpage.h
2013-12-23 10:43:45 +01:00

19 lines
311 B
C++

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