forked from qt-creator/qt-creator
16 lines
200 B
C
16 lines
200 B
C
|
|
#ifndef %PRE_DEF%
|
||
|
|
#define %PRE_DEF%
|
||
|
|
|
||
|
|
#include <QtGui/%BASECLASS%>
|
||
|
|
|
||
|
|
class %CLASS% : public %BASECLASS%
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
%CLASS%(QWidget *parent = 0);
|
||
|
|
~%CLASS%();
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // %PRE_DEF%
|