2022-08-25 18:43:03 +08:00
|
|
|
#ifndef MAINWIN_H
|
|
|
|
#define MAINWIN_H
|
|
|
|
|
|
|
|
#include "basewin.h"
|
2023-03-31 18:44:09 +08:00
|
|
|
#include "gutil/qgui.h"
|
2022-08-25 18:43:03 +08:00
|
|
|
|
|
|
|
class MainWin : public BaseWin {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
MainWin();
|
2023-07-28 14:48:41 +08:00
|
|
|
~MainWin();
|
2022-08-25 18:43:03 +08:00
|
|
|
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
|