在 doxygen 输出中隐藏公共包
给定一些包 foo.bar.project.something.FirstModule
foo.bar.project.something.SecondModule
等。它们都有那么长的 foo.bar。共同点是project.something
。我如何告诉 doxygen 隐藏(或至少缩短)那些常见的包名称,并在其输出中仅打印 FirstModule.SomeClass
和 SecondModule.MyInterface
?
Given some packages foo.bar.project.something.FirstModule
foo.bar.project.something.SecondModule
, etc. They all have that long foo.bar.project.something
in common. How do I tell doxygen to hide (or at least shorten) those common package names and only print FirstModule.SomeClass
and SecondModule.MyInterface
in its output?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 HIDE_SCOPE_NAMES 设置为 YES,但这也可能会删除 FirstModule 和 SecondModule。
另一种方法是编写一个简单的输入过滤器(请参阅 doxygen 配置文件中的 INPUT_FILTER)来替换“package foo.bar.project.something.AModule;”通过“包AModule;”。然后您就可以完全控制剥离的数量。
You could set HIDE_SCOPE_NAMES to YES, but that will probably also strip FirstModule and SecondModule.
An alternative is to write a simple input filter (see INPUT_FILTER in the doxygen config file) that replaces "package foo.bar.project.something.AModule;" by "package AModule;". Then you have full control over how much is stripped.