从Doxygen依赖图中排除基本库包含? [英] Exclude base library inclusions from Doxygen dependency graph?

查看:424
本文介绍了从Doxygen依赖图中排除基本库包含?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在用Doxygen记录一个大学的c ++项目,一切都是正确的,但依赖关系图显示如下:

I'm documenting a c++ project for college with Doxygen, and everything is correct, but the dependency graph shows like this:

我想图表不显示包括列表,地图或字符串,并且只包括我为项目创建的自定义类,但我不能在网上或文档上找到任何东西。

I would like that the graph doesn't show inclusions such as list, map or string, and only includes custom Classes i created for the project, but i can't find anything online or on the docs. Does anyone know how to do this?

推荐答案

因为你想排除stdlib容器类,你应该添加 std :: 命名空间到您的doxy文件:

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

EXCLUDE_SYMBOLS = std::*

这将忽略位于该命名空间中的所有类,因此在生成的图表中跳过它们。

This will ignore all classes located in that namespace, and thus skip them in the generated diagram.

这篇关于从Doxygen依赖图中排除基本库包含?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆