Files
qt-creator/share/qtcreator/templates/wizards/projects/plaincpp/main.cpp
Tobias Hunger 6b6091ea61 Replace several "Plain C++" with one JSON wizard
Change-Id: Ia08f2127cdb25785cf313ec0a31a3d9775161c9b
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
2015-07-01 13:45:01 +00:00

11 lines
132 B
C++

%{Cpp:LicenseTemplate}\
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}