summaryrefslogtreecommitdiffstats
path: root/examples/network/remotecontrol/startup.h
blob: a3359f57315dae9e00b299a0da8b24b084129651 (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
{
    TQ_OBJECT

public:
    StartUp();
    ~StartUp();

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

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

#endif // STARTUP_H