mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
17 lines
233 B
C
17 lines
233 B
C
|
#ifndef CUSTOMWIDGET_H
|
||
|
#define CUSTOMWIDGET_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
|
||
|
class CustomWidget : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit CustomWidget(QWidget *parent = nullptr);
|
||
|
|
||
|
signals:
|
||
|
|
||
|
public slots:
|
||
|
};
|
||
|
|
||
|
#endif // CUSTOMWIDGET_H
|