summaryrefslogtreecommitdiffstats
path: root/src/fbgui.h
blob: 134581291b7957300a13db74bb71ee9afac40773 (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 FBGUI_H
#define FBGUI_H

#include <QtCore>
#include <QApplication>

class fbbrowser;
class fbgui : public QObject
{
	Q_OBJECT

public:
	fbgui(QApplication *parent);
	~fbgui();

private:
	fbbrowser* fbb;
	QUrl _url;

};

#endif // FBGUI_H