是否有惰性 C++ (lzz) 和 Doxygen 玩得好吗?
有人尝试过在 Lazy C++ 源文件中嵌入 Doxygen 注释吗?有什么问题吗?生成头文件/源文件后,Doxygen 注释去了哪里?
Has anyone tried embedding Doxygen comments within Lazy C++ source files? Any problems? Where do the Doxygen comments go after generating the header/source files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我继续下载 Lazy C++ 来尝试一下,似乎它与 Doxygen 配合得不太好。我的 Doxygen 注释根本没有出现在生成的头文件/源文件中。
然后,我尝试让 Doxygen 解析我的 lzz 文件,该文件有一个特殊的
#hdr
预处理器命令。 Doxygen 只是忽略了那个特殊的预处理器命令,生成的文档看起来很好。所以这个故事的寓意是简单地让 Doxygen 解析 *.lzz 文件而不是生成的 *.h / *.cpp 文件。 :-)
I went ahead and downloaded Lazy C++ to try it out, and it seems that it does not play nice with Doxygen. My Doxygen comments did not appear at all in the generated header/source files.
I then tried making Doxygen parse my lzz file, which had a special
#hdr
preprocessor command. Doxygen simply ignored that special preprocessor command and the generated documentation seems fine.So the moral of the story is to simply make Doxygen parse the *.lzz files and not the generated *.h / *.cpp files. :-)