Is there any way to change the initial program that is created when you begin a new c++ prgram? Instead of:
Code:
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <iostream.h>
#include <stdlib.h>

int main(int argc, char* argv[])
{
	cout << "hello, world" << endl;
	return EXIT_SUCCESS;
}
I woud prefer:
Code:
#include <iostream>

int main()
{
	
	return 0;
}
Any ideas?