QtExamples/QtMyStyleEx/Example.h

15 lines
191 B
C
Raw Normal View History

2020-02-07 18:18:24 +08:00
#ifndef EXAMPLE_H
#define EXAMPLE_H
#include <QWidget>
class Example : public QWidget
{
Q_OBJECT
public:
Example(QWidget *parent = nullptr);
~Example();
};
#endif // EXAMPLE_H