QtExamples/QToolButtonAutoRaiseEx/CMakeAutoRaise/widget.h

15 lines
185 B
C
Raw Normal View History

2022-10-20 16:23:15 +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