Doxygen ///在行尾注释

时间:2010-12-13 10:50:02

标签: objective-c documentation doxygen

当我评论cvars时,我倾向于使用以下格式,因为我觉得它更容易阅读。

UILabel *titleLabel; // The title label in the view

我现在的客户使用doxygen,所以我回去把我的评论转换成doxygen格式,我希望这样简单

UILabel *titleLabel; /// The title label in the view

不幸的是,这导致评论被附加到下一个cvar。

有没有办法告诉doxygen单行评论应该属于他们所在行的cvar?

1 个答案:

答案 0 :(得分:13)

我认为您错过了<,请尝试使用:

UILabel *titleLabel; ///< The title label in the view

有关详细信息,请参阅doxygen manual