mirror of
https://github.com/Fishwaldo/qt-openzwave.git
synced 2025-07-06 05:08:19 +00:00
Rename this directory to avoid binary clash
This commit is contained in:
parent
77ddc7e6ae
commit
38f0d765f9
18 changed files with 3 additions and 2 deletions
33
qt-simpleclient/startup.h
Normal file
33
qt-simpleclient/startup.h
Normal file
|
@ -0,0 +1,33 @@
|
|||
#ifndef STARTUP_H
|
||||
#define STARTUP_H
|
||||
|
||||
#include <QDialog>
|
||||
#include <QObject>
|
||||
|
||||
|
||||
namespace Ui {
|
||||
class Startup;
|
||||
}
|
||||
|
||||
class Startup : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public Q_SLOTS:
|
||||
void localPressed();
|
||||
void remotePressed();
|
||||
|
||||
Q_SIGNALS:
|
||||
void startLocal(QString, bool);
|
||||
void startRemote(QString);
|
||||
|
||||
public:
|
||||
explicit Startup(QWidget *parent = nullptr);
|
||||
~Startup();
|
||||
|
||||
|
||||
private:
|
||||
Ui::Startup *ui;
|
||||
};
|
||||
|
||||
#endif // STARTUP_H
|
Loading…
Add table
Add a link
Reference in a new issue