forked from qt-creator/qt-creator
15 lines
227 B
C
15 lines
227 B
C
|
|
#ifndef @WIDGET_INCLUDE_GUARD@
|
||
|
|
#define @WIDGET_INCLUDE_GUARD@
|
||
|
|
|
||
|
|
#include <QtGui/@WIDGET_BASE_CLASS@>
|
||
|
|
|
||
|
|
class @WIDGET_CLASS@ : public @WIDGET_BASE_CLASS@
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
@WIDGET_CLASS@(QWidget *parent = 0);
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|