未使用 Doxygen 记录变量
我正在使用 Doxygen
来记录我的 C++ 代码。所有内容都以 HTML 格式很好地输出,除了像下面这样的属性/变量不是(根本不是)。
/**
* Flag to check whether the variable is once initialized or not
*/
bool initialized_;
知道会出什么问题吗?
编辑
initialized_
是一个类成员变量。
I'm using Doxygen
to document my C++ code. All are well outputted in HTML format, except attributes/variables like below are not(not at all).
/**
* Flag to check whether the variable is once initialized or not
*/
bool initialized_;
Any idea what could go wrong?
EDIT
initialized_
is a class member variable.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定这是否能解决您的问题,因为您提供的有关变量
initialized_
的信息非常少(它是全局变量吗?它是类的一部分等),但是 doxygen < a href="http://www.doxygen.nl/manual/docblocks.html" rel="nofollow noreferrer">文档(请参阅标题其他地方的文档)指出那I'm not sure if this will solve your problem, since you have given very little information about the variable
initialized_
(is it a global variable, is it part of a class etc.) but the doxygen documentation (see under the heading Documentation at other places) states that这也可能有助于人们寻找答案:
在您的
Doxyfile
文件中,我使用
doxygen
和 Doxygen GUI Frontend (Doxywizard) 版本1.8.9.1
对于 OS X。还有一个可以启用的递归扫描复选框。默认情况下未启用此功能。This might also help people looking for answers:
in your
Doxyfile
fileI am using
doxygen
and the Doxygen GUI Frontend (Doxywizard) version1.8.9.1
for OS X. There is also a checkbox for scanning recursively you can enable. This was not enabled by default.