2017-07-03 3 views
0

私はドキュメントを生成するためにDoxygenを使用しますが、ドキュメンテーションを持たない構造体のドキュメントを追加します。Doxygen:いくつかのクラス/構造体をスキップ

Doxyfile.inでHIDE_UNDOC_CLASSESを使用していますが、まだドキュメントがあります。

クラス/構造体のドキュメントを生成しないようにDoxygenに説明する別の方法はありますか?

答えて

0

EXCLUDE_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/* 
関連する問題