qt/ledset/mainwin.h
2023-03-20 12:11:58 +08:00

20 lines
273 B
C++

#ifndef MAINWIN_H
#define MAINWIN_H
#include "basewin.h"
#include "table.h"
class MainWin : public BaseWin {
Q_OBJECT
public:
MainWin();
QWidget *win{0};
QByteArray net_name;
Table *table{0};
public slots:
void getCard();
};
#endif // MAINWIN_H