summaryrefslogtreecommitdiffstats
path: root/src/fbgui.h
blob: d435c01042a8f08f5abd533b58f98b6fc52b176b (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
24
#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