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
388 B
29 lines
388 B
#ifndef STARTUP_H
|
|
#define STARTUP_H
|
|
|
|
#include <qobject.h>
|
|
|
|
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
|