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 |
|
---|
6 | class QSocket;
|
---|
7 | class RemoteCtrlImpl;
|
---|
8 | class MainDialog;
|
---|
9 |
|
---|
10 | class StartUp : public QObject
|
---|
11 | {
|
---|
12 | Q_OBJECT
|
---|
13 |
|
---|
14 | public:
|
---|
15 | StartUp();
|
---|
16 | ~StartUp();
|
---|
17 |
|
---|
18 | private slots:
|
---|
19 | void startRemoteCtrl();
|
---|
20 | void startMainDialog();
|
---|
21 |
|
---|
22 | private:
|
---|
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.