QtExamples/QtMyStyleEx/QtExample01/QtStyleEx/widget.h

18 lines
198 B
C
Raw Permalink Normal View History

#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
class Widget : public QWidget
{
Q_OBJECT
public:
Widget(QWidget *parent = 0);
~Widget();
void init();
};
#endif // WIDGET_H