Why not have a single .h file that includes all other .h files, like this:Then your newstuff.cpp (and all other .cpp files) only needs to:
Code:
all.h:#include <something.h>#include <other.h>// And the latest in the family:#include <newstuff.h>Code:
#include <all.h>Statistics: Posted by deepo — Sat Feb 07, 2026 11:03 pm