You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
394 B
29 lines
394 B
#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
|