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.
23 lines
273 B
23 lines
273 B
6 months ago
|
#ifndef MYDEVICE_H
|
||
|
#define MYDEVICE_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
namespace Ui {
|
||
|
class mydevice;
|
||
|
}
|
||
|
|
||
|
class mydevice : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit mydevice(QWidget *parent = nullptr);
|
||
|
~mydevice();
|
||
|
|
||
|
private:
|
||
|
Ui::mydevice *ui;
|
||
|
};
|
||
|
|
||
|
#endif // MYDEVICE_H
|