blob: 900d8415e845dd21e858ead1a53a7993943d8c04 (
plain)
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
26
27
28
|
#ifndef STARTUP_H
#define STARTUP_H
#include <qobject.h>
class QSocket;
class RemoteCtrlImpl;
class MainDialog;
class StartUp : public QObject
{
Q_OBJECT
public:
StartUp();
~StartUp();
private slots:
void startRemoteCtrl();
void startMainDialog();
private:
QSocket *socket;
RemoteCtrlImpl *remoteCtrl;
MainDialog *mainDialog;
};
#endif // STARTUP_H
|