qt/LedOK/wDevicesManager/specialdlg.h

14 lines
232 B
C
Raw Normal View History

2022-01-04 18:11:48 +08:00
#ifndef SPECIALDLG_H
#define SPECIALDLG_H
2022-08-25 18:37:24 +08:00
#include <QDialog>
2022-01-04 18:11:48 +08:00
#include <communication/network.h>
2022-08-25 18:37:24 +08:00
class SpecialDlg : public QDialog {
2022-01-04 18:11:48 +08:00
Q_OBJECT
public:
2022-08-25 18:37:24 +08:00
explicit SpecialDlg(QWidget *, NetComm *);
2022-01-04 18:11:48 +08:00
};
#endif // SPECIALDLG_H