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

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

问题描述

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



我希望图形不会显示列表,地图或字符串等内容,只包含我为项目创建的自定义类,但是我找不到在线或文档。有没有人知道如何做?

解决方案

由于你想排除stdlib容器类,你应该添加 std :: 命名空间到你的doxyfile:

  EXCLUDE_SYMBOLS = std :: * 

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

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?

解决方案

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天全站免登陆