d5199b1d91
ledok增加taxihub报错
16 lines
263 B
C++
16 lines
263 B
C++
#ifndef EXPERTWIN_H
|
|
#define EXPERTWIN_H
|
|
|
|
#include "basewin.h"
|
|
|
|
class ExpertWin : public BaseWin {
|
|
Q_OBJECT
|
|
public:
|
|
explicit ExpertWin(QWidget *parent = nullptr);
|
|
|
|
int screenWidth{1280}, screenHeight{720};
|
|
double rate{1};
|
|
};
|
|
|
|
#endif // EXPERTWIN_H
|