summaryrefslogtreecommitdiffstats
path: root/src/fbgui.h
blob: 9bf4ce04eb7ac7e95af0c70ea307991164ef2dd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef FBGUI_H
#define FBGUI_H

#include <QtCore>
#include "fbbrowser.h"

#define DEFAULT_URL "http://www.google.com"

class fbgui : public QObject
{
	Q_OBJECT

public:
	fbgui();
	~fbgui();
	void startBrowser();


private:
	fbbrowser* _fbb;
};

#endif // FBGUI_H