QtExamples/ExPicShot/widget.h

15 lines
199 B
C
Raw Normal View History

2022-03-14 19:59:16 +08:00
#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = nullptr);
~Widget();
};
#endif // WIDGET_H