summaryrefslogtreecommitdiffstats
path: root/examples/network/remotecontrol/startup.h
blob: 10922d267623358d560c673e347a9158f2cc37c9 (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 <ntqobject.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