summaryrefslogtreecommitdiffstats
path: root/examples/network/remotecontrol/startup.h
blob: 5530cba8f5eef0f97e942038ba742a6f81db385d (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 TQSocket;
class RemoteCtrlImpl;
class MainDialog;

class StartUp : public TQObject
{
    Q_OBJECT

public:
    StartUp();
    ~StartUp();

private slots:
    void startRemoteCtrl();
    void startMainDialog();

private:
    TQSocket *socket;
    RemoteCtrlImpl *remoteCtrl;
    MainDialog *mainDialog;
};

#endif // STARTUP_H