Files
qt-creator/share/qtcreator/templates/qt4project/mywidget.h

16 lines
200 B
C
Raw Normal View History

2008-12-02 12:01:29 +01:00
#ifndef %PRE_DEF%
#define %PRE_DEF%
#include <QtGui/%BASECLASS%>
class %CLASS% : public %BASECLASS%
{
Q_OBJECT
public:
%CLASS%(QWidget *parent = 0);
~%CLASS%();
};
#endif // %PRE_DEF%