source: trunk/examples/network/remotecontrol/startup.h

Last change on this file was 2, checked in by dmik, 20 years ago

Imported xplatform parts of the official release 3.3.1 from Trolltech

  • Property svn:keywords set to Id
File size: 416 bytes
Line 
1#ifndef STARTUP_H
2#define STARTUP_H
3
4#include <qobject.h>
5
6class QSocket;
7class RemoteCtrlImpl;
8class MainDialog;
9
10class StartUp : public QObject
11{
12 Q_OBJECT
13
14public:
15 StartUp();
16 ~StartUp();
17
18private slots:
19 void startRemoteCtrl();
20 void startMainDialog();
21
22private:
23 QSocket *socket;
24 RemoteCtrlImpl *remoteCtrl;
25 MainDialog *mainDialog;
26};
27
28#endif // STARTUP_H
Note: See TracBrowser for help on using the repository browser.