emsApplication/applications/EmsShower/customwidget.h

22 lines
362 B
C++

#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