Doxygen 命令
Doxygen command
我正在研究 Doxygen 并尝试收集文档。
原始文档中有代码行
/// Get the current running request.
/// \sq{Type, Synchronous function,
/// Notification, none (synchronous function)}
在Doxygen源码文档中有这样的表述
Get the current running request.
_____________________________________________
| Type | Synchronous function |
|_______________|_____________________________|
| Notification | none (synchronous function)|
|_______________|_____________________________|
如果我自己从这些文件中收集文档 - 我有一整行
Get the current running request. \sq{Type, Synchronous function, Notification, none (synchronous function)}
我做错了什么,或者我需要为此设置什么设置才能获得 table 形式的视图?
我阅读了 Doxygen 的文档,但是没有对 \sq 命令的描述
也许有人会告诉我使用上面的文本使用什么命令我可以获得上面显示的 table 形式的视图?
当运行默认设置文件出现问题时,将收到警告:
warning: Found unknown command '\sq'
所以在原始代码中,您可能会有一个 ALIASES
(请参阅文档:https://www.doxygen.nl/manual/config.html#cfg_aliases),其中 sq
命令定义了 4 个参数。
此sq
命令的内容必须由用户定义(可能在这里可以完成带有table的操作)。
我正在研究 Doxygen 并尝试收集文档。 原始文档中有代码行
/// Get the current running request.
/// \sq{Type, Synchronous function,
/// Notification, none (synchronous function)}
在Doxygen源码文档中有这样的表述
Get the current running request.
_____________________________________________
| Type | Synchronous function |
|_______________|_____________________________|
| Notification | none (synchronous function)|
|_______________|_____________________________|
如果我自己从这些文件中收集文档 - 我有一整行
Get the current running request. \sq{Type, Synchronous function, Notification, none (synchronous function)}
我做错了什么,或者我需要为此设置什么设置才能获得 table 形式的视图? 我阅读了 Doxygen 的文档,但是没有对 \sq 命令的描述
也许有人会告诉我使用上面的文本使用什么命令我可以获得上面显示的 table 形式的视图?
当运行默认设置文件出现问题时,将收到警告:
warning: Found unknown command '\sq'
所以在原始代码中,您可能会有一个 ALIASES
(请参阅文档:https://www.doxygen.nl/manual/config.html#cfg_aliases),其中 sq
命令定义了 4 个参数。
此sq
命令的内容必须由用户定义(可能在这里可以完成带有table的操作)。