summaryrefslogblamecommitdiffstats
path: root/src/fbgui.h
blob: ab0d4b191b1cfddf472c6c82e033c9cbcebd1890 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


               
                 
 

                            



                
                
                 
                               
                            

        
                        

                  


                 
#ifndef FBGUI_H
#define FBGUI_H

#include <QtCore>

class fbbrowser;
class fbgui : public QObject
{
	Q_OBJECT

public:
	fbgui();
	~fbgui();
	void setUrl(QUrl &url);
	void startBrowser();

private:
	fbbrowser* _fbb;
	QUrl _url;

};

#endif // FBGUI_H