From bd0f3345a938b35ce6a12f6150373b0955b8dd12 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 15:24:15 -0500 Subject: Add Qt3 development HEAD version --- examples/network/remotecontrol/startup.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 examples/network/remotecontrol/startup.h (limited to 'examples/network/remotecontrol/startup.h') diff --git a/examples/network/remotecontrol/startup.h b/examples/network/remotecontrol/startup.h new file mode 100644 index 0000000..900d841 --- /dev/null +++ b/examples/network/remotecontrol/startup.h @@ -0,0 +1,28 @@ +#ifndef STARTUP_H +#define STARTUP_H + +#include + +class QSocket; +class RemoteCtrlImpl; +class MainDialog; + +class StartUp : public QObject +{ + Q_OBJECT + +public: + StartUp(); + ~StartUp(); + +private slots: + void startRemoteCtrl(); + void startMainDialog(); + +private: + QSocket *socket; + RemoteCtrlImpl *remoteCtrl; + MainDialog *mainDialog; +}; + +#endif // STARTUP_H -- cgit v1.2.3