Are there tools that will parse a C++ project and decide
whether the header files include what they use:
i.e. if a file Foo.cc (or Foo.h) mentions some class Bar (e.g. vector) then
it itself includes a header file
defining the class (a file defining Bar e.g. <vector>
) ?
Edit: I want to clarify: if a header file Foo.h mentions vector and one of its includes already included vector, the compiler is happy. I don't want that. If Foo.h mentions vector at all, it should include it directly and not depend on another header. Does the compiler catch this?
The compiler will do this for you. A number of C++ style guides strongly recommend that for this reason all .cpp files should include the corresponding header as the first substantive include directive.