Excluding specific headers from dependency graphs

五迷三道 提交于 2019-12-01 03:16:54
Cheeseminer

Bit of a long shot this because my doxygen is a bit rusty, but have you tried

\cond \endcond

around the header section. (Conditional inclusion, but blank = false)

For example, the standard C or C++ headers usually clutter the dependency graph pretty much, so you might want to remove them from that graph (as their usage can be considered as part of the language). You can do that on a file basis like this (tested with 1.8.7):

/// \cond
#include <iostream>
#include <string>   // whatever...
/// \endcond

In other instances this excludes the code between the markers from being visible to doxygen, but I'm unsure it will work for this instance.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!