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

13 lines
258 B
C++
Raw Normal View History

%{Cpp:LicenseTemplate}\
#include "%{HdrFileName}"
%{JS: QtSupport.qtIncludes([ 'QtGui/QApplication' ], [ 'QtWidgets/QApplication' ]) }\
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
%{Class} w;
w.show();
return a.exec();
}