Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/meteor/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Doxygen:跳过一些类/结构_Doxygen - Fatal编程技术网

Doxygen:跳过一些类/结构

Doxygen:跳过一些类/结构,doxygen,Doxygen,我使用Doxygen生成文档,但它为没有任何文档的结构添加了文档 我在Doxyfile.in中使用了HIDE_UNDOC_类,但仍然可以看到一些文档 是否有其他方法向Doxygen解释不为类/结构生成任何文档?您可以使用EXCLUDE\u SYMBOLS标记 文件说: The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names (namespaces, classes, functions, etc.) that

我使用Doxygen生成文档,但它为没有任何文档的结构添加了文档

我在Doxyfile.in中使用了HIDE_UNDOC_类,但仍然可以看到一些文档


是否有其他方法向Doxygen解释不为类/结构生成任何文档?

您可以使用EXCLUDE\u SYMBOLS标记

文件说:

The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
(namespaces, classes, functions, etc.) that should be excluded from the
output. The symbol name can be a fully qualified name, a word, or if the
wildcard * is used, a substring. Examples: ANamespace, AClass,
AClass::ANamespace, ANamespace::*Test

Note that the wildcards are matched against the file with absolute path, so to
exclude all test directories use the pattern */test/*