qt/ledset/mainwin.h
2023-03-31 18:44:09 +08:00

20 lines
278 B
C++

#ifndef MAINWIN_H
#define MAINWIN_H
#include "basewin.h"
#include "gutil/qgui.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