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

24 lines
268 B
C
Raw Normal View History

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