widget.h
15 lines
| 186 B
| text/x-c
|
CLexer
sauimone
|
r10 | #ifndef WIDGET_H | ||
#define WIDGET_H | ||||
#include <QtGui/QWidget> | ||||
class Widget : public QWidget | ||||
{ | ||||
Q_OBJECT | ||||
public: | ||||
Widget(QWidget *parent = 0); | ||||
~Widget(); | ||||
}; | ||||
#endif // WIDGET_H | ||||