
Doxygen
hello_wyq
这个作者很懒,什么都没留下…
展开
-
Doxygen Manual
Doxygen Manual This manual is divided into three parts, each of which is divided into several sections. The first part forms a user manual: Section Installation discusses how to download,转载 2006-10-13 13:16:00 · 1295 阅读 · 0 评论 -
Installation of Doxygen
Installation of Doxygen Install Doxygen by running the following commands: rm src/unistd.h &&./configure --prefix /usr --docdir /usr/share转载 2006-10-13 13:48:00 · 1040 阅读 · 0 评论 -
doxygen无法使用dot简单解决方法
当使用doxygen的时候,dot是一个很重要的工具,在安装后,加载dot时候可能出现如下情况:$ dotdot: error while loading shared libraries: libgd.so.2: cannot open shared object file: No such file or directory如何解决呢?很简单,主要是LD_LIBRARY_PATH环境变量没有正原创 2006-06-15 14:41:00 · 8230 阅读 · 0 评论 -
如何用doxygen描写函数
一个函数一般需要如下的doxygen描述它,当然里面的部分选项是可以忽略的。/** * @ingroup * @brief * @remark * @param * @return * @retval * @see * @exception * @deprecated * @since */returning_value your_function( args ... );原创 2006-06-27 11:49:00 · 1708 阅读 · 0 评论 -
如何用doxygen描写文件
在文件的开始处写入如下格式的内容/** * @file * @brief * @auther * @date * @version * @warning * @note * @mainpage 模块名 * @section */原创 2006-06-27 11:54:00 · 971 阅读 · 0 评论 -
如何用doxygen描写模块
在模块文件的最前面写入/** * @mainpage * @setion */原创 2006-06-27 11:58:00 · 1278 阅读 · 0 评论