I am currently working on program with a lot of source files. Sometimes it is difficult to keep track of what libraries I have already #include
d. Theoretically, I could make a single header file called Headers.h
that just contains all the #include
statements I need, then make all other header files #include "Headers.h"
.
Why is this a good/bad idea?