English 中文(简体)
Doxygen /// comments at end of line
原标题:Doxygen /// comments at end of line

当我发表评论时,我倾向于使用以下格式,因为我认为更容易阅读。

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

我目前的客户使用氧气,因此我会回头,把我的意见转换成代氧格式,我希望这种方式简单明了。

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

不幸的是,这导致了对下var的评论。

是否有办法告诉 d氧气,单线评论应当属于var的线吗?

最佳回答

I think you are missing a <, try using:

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

See the doxygen Manual for more information.

问题回答

暂无回答




相关问题
Logback tutorial [closed]

Where can I find a Logback tutorial and/or sample projects? Something similar with this "Log4j Tutorial" would be nice. Note: I am aware of the documentation available on the official Logback website ...

How to document the Main method? [closed]

Okay, so I ve got a .NET console application with it s Main method, contained in a Program class. You know, the usual: class Program { static void Main(string[] args) { // Do ...

javadoc: show also descriptions of methods from parent class

Is there a way to produce javadoc so that all methods accessible from the class are listed with their full description? Usually only the methods defined in that class are listed and the rest are only ...

Is there a list of known web crawlers? [closed]

I m trying to get accurate download numbers for some files on a web server. I look at the user agents and some are clearly bots or web crawlers, but many for many I m not sure, they may or may not be ...

热门标签