[go: up one dir, main page]

Menu

[afa80d]: / browserlauncer.h  Maximize  Restore  History

Download this file

26 lines (18 with data), 388 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef BROWSERLAUNCER_H
#define BROWSERLAUNCER_H
#include <QObject>
#include <QString>
class BrowserLauncer : public QObject
{
Q_OBJECT
public:
explicit BrowserLauncer(QObject *parent = 0);
void SetUrl(QString url) {m_urlTxt = url;}
signals:
public slots:
void doWork();
private:
QString m_urlTxt;
int m_response;
};
#endif // BROWSERLAUNCER_H