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

11 lines
166 B
C++
Raw Normal View History

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