aboutsummaryrefslogtreecommitdiffstats
path: root/PageRunner.h
blob: a9891cc74ae62b8bcdee22fbfc78d1db4e30343b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef PAGERUNNER_H
#define PAGERUNNER_H

#include <QObject>
#include <QUrl>
class QWebPage;

class PageRunner : public QObject
{
	Q_OBJECT
public:
	PageRunner(const QUrl &webpage, QObject *parent = 0);

private:
	QWebPage *m_page;

public slots:
	void loaded();

};

#endif // PAGERUNNER_H