emsApplication/applications/EmsShower/customwidget.h

22 lines
362 B
C
Raw Normal View History

2025-03-05 13:37:23 +08:00
#ifndef CUSTOMWIDGET_H
#define CUSTOMWIDGET_H
#include <QWidget>
class CustomWidget : public QWidget
{
Q_OBJECT
public:
explicit CustomWidget(QWidget *parent = nullptr);
private:
void setupTopSection(QWidget *parent);
void setupMidSection(QWidget *parent);
void setupBottomSection(QWidget *parent);
signals:
};
#endif // CUSTOMWIDGET_H