Exclude inclusion of the base library from the Doxygen dependency graph?

I am documenting a C ++ project for college with Doxygen and everything is correct, but the dependency graph is as follows: dependency graph

I would like not to include inclusions, such as a list, map or line, on the graph, and only user classes created for the project are included, but I can not find anything on the Internet or in documents. Does anyone know how to do this?

+4
source share
2 answers

Since you want to exclude the stdlib container classes, you should probably add a namespace std::to your doxyfile:

EXCLUDE_SYMBOLS = std::*

, , , , .

+1

:

/** @cond */
#include <string>
// include more headers
/** @endcond */

, , , , . : @file.

0

All Articles