Files
qt-creator/share/qtcreator/templates/wizards/projects/consoleapp/main.cpp

11 lines
239 B
C++
Raw Normal View History

%{Cpp:LicenseTemplate}\
%{JS: QtSupport.qtIncludes([ 'QtCore/QCoreApplication' ],
[ 'QtCore/QCoreApplication' ]) }\
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
return a.exec();
}