forked from qt-creator/qt-creator
Change-Id: I989afb986f469ee7223eb84b7db6805d9fe00dd6 Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
11 lines
166 B
C++
11 lines
166 B
C++
#include "%INCLUDE%"
|
|
#include <%QAPP_INCLUDE%>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
%CLASS% w;
|
|
%SHOWMETHOD%
|
|
return a.exec();
|
|
}
|