Files
qt-creator/share/qtcreator/templates/qt4project/main.cpp

11 lines
167 B
C++
Raw Normal View History

2008-12-02 12:01:29 +01:00
#include <%QAPP_INCLUDE%>
#include "%INCLUDE%"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
%CLASS% w;
w.show();
return a.exec();
}