qt/ledset/mainwin.h

20 lines
273 B
C
Raw Normal View History

2022-08-25 18:43:03 +08:00
#ifndef MAINWIN_H
#define MAINWIN_H
#include "basewin.h"
2022-12-16 15:08:53 +08:00
#include "table.h"
2022-08-25 18:43:03 +08:00
class MainWin : public BaseWin {
Q_OBJECT
public:
MainWin();
QWidget *win{0};
2022-12-16 15:08:53 +08:00
QByteArray net_name;
2023-03-20 11:30:19 +08:00
Table *table{0};
2022-12-16 15:08:53 +08:00
2023-03-20 12:11:58 +08:00
public slots:
void getCard();
2022-08-25 18:43:03 +08:00
};
#endif // MAINWIN_H