html – 使用doxygen记录枚举

html – 使用doxygen记录枚举,第1张

概述doxygen为枚举生成的html文档列出了左侧的枚举和右侧的文档.但是我需要为每个值提供非常详细的文档,并且一些名称非常长,因此使文档右侧列显示在右侧,看起来非常糟糕.是否有可能使每个值的文档显示在值的下方或上方而不是右侧? 我正在使用Doxygen 1.7.5.1.我有一个类似的情况……我有一个大约1000名成员的枚举,我是从电子表格生成的.我希望整数值向右移动,Doxygen位在成员上方. doxygen为枚举生成的HTML文档列出了左侧的枚举和右侧的文档.但是我需要为每个值提供非常详细的文档,并且一些名称非常长,因此使文档右侧列显示在右侧,看起来非常糟糕.是否有可能使每个值的文档显示在值的下方或上方而不是右侧?解决方法 我正在使用Doxygen 1.7.5.1.我有一个类似的情况……我有一个大约1000名成员的枚举,我是从电子表格生成的.我希望整数值向右移动,Doxygen位在成员上方.

我所做的只是使用成员名称上方的三重斜杠.对于多行注释,我在需要的地方插入了HTML换行符.我只做了第一节,但我认为这很明显.注意:第一行因周期而中断.后续行没有.

////// \file test.h/// \brIEf Test of Doxygen enum commenting./////! A test of Doxygen commenting.typedef enum _DOXYGEN_TEST{    /// This is a single line comment.    Member_001,//  1    /// This is a mutli-line comment.    /// 'Twas brillig,and the slithy toves       <br>    /// DID gyre and gimble in the wabe;          <br>    /// All mimsy were the borogoves,<br>    /// And the mome raths outgrabe.              <br>    /// "Beware the Jabberwock,my son!           <br>    /// The jaws that bite,the claws that catch! <br>    /// Beware the Jubjub bird,and shun          <br>    /// The frumIoUs Bandersnatch!"    ///     /// He took his vorpal sword in hand:    /// Long time the manxome foe he sought--    /// So rested he by the Tumtum tree,/// And stood awhile in thought.    ///     /// And as in uffish thought he stood,/// The Jabberwock,with eyes of flame,/// Came whiffling through the tulgey wood,/// And burbled as it came!    ///     /// One,two! One,two! and through and through    /// The vorpal blade went snicker-snack!    /// He left it dead,and with its head    /// He went galumphing back.    ///     /// "And hast thou slain the Jabberwock?    /// Come to my arms,my beamish boy!    /// O frabjous day! Callooh! Callay!"    /// He chortled in his joy.    ///     /// 'Twas brillig,and the slithy toves    /// DID gyre and gimble in the wabe;    /// All mimsy were the borogoves,/// And the mome raths outgrabe.    Member_002,//  2}Doxygen_test;

生成的Doxygen生成的文件:

总结

以上是内存溢出为你收集整理的html – 使用doxygen记录枚举全部内容,希望文章能够帮你解决html – 使用doxygen记录枚举所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1075104.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-26
下一篇 2022-05-26

发表评论

登录后才能评论

评论列表(0条)

保存