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