18 lines
332 B
C++
18 lines
332 B
C++
#ifndef EXPERTBOXLAYOUTWIN_H
|
|
#define EXPERTBOXLAYOUTWIN_H
|
|
|
|
#include "basewin.h"
|
|
#include <QLabel>
|
|
#include <QSpinBox>
|
|
#include <QComboBox>
|
|
|
|
class ExpertBoxLayoutWin : public BaseWin {
|
|
Q_OBJECT
|
|
public:
|
|
explicit ExpertBoxLayoutWin(QWidget *parent = 0);
|
|
double rate{1};
|
|
QWidget *box;
|
|
};
|
|
|
|
#endif // EXPERTBOXLAYOUTWIN_H
|