1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/test/tmpproj/customwidget.h
2018-02-11 15:12:05 +08:00

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