Possible Duplicate:
C++ style question: what to #include?
When I #include
a header file, and I also need other files that are already #included from the first one, should I rely on the first #include
or should I #include
all of them?
I know that it will work anyway, but I want to know what is the best practice.
If I don't rely, it means that I can have a list of few dozens of #includes in my file. Does it make sense?