Is there a way to change the default layout of main.cpp
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}
to something else so I don't have to retype what's required for my C++ class over and over?
I haven't tried it myself, but have you maybe tried Settings -> Editor -> Default Code?
Won't help...
Either modify the template you're using (right click on it in the wizard -> edit script) or save a project as template.
That does not work for wizard-created projects.
But you can create a project that fits your needs and save it as user-template ("File -> Save Project as template") and then use it with "File -> New -> from template".
Quote from: jens on August 28, 2013, 10:37:49 PM
That does not work for wizard-created projects.
But you can create a project that fits your needs and save it as user-template ("File -> Save Project as template") and then use it with "File -> New -> from template".
That worked, ty.
I just had it saved in notepad in the main folder list, but this works too :P