Doxygen几个小问题,mark一下

    首先是在Visual Assist X中的配置,在Snippet Editor窗口修改一下file header的snippet和Refactor Document Method的snippet.

image

     设置分别如下

file header

/** 
* @file         $FILE_BASE$.$FILE_EXT$ 
* @Synopsis      $end$ 
* @author         你的名字,你的邮箱 
* @version     $version$ 
* @date         $DAY$:$MONTH$:$YEAR$  
*/

Refactor Document Method

/* —————————————————————————-*/ 
/** 
* @Synopsis    $SymbolName$ 
*                $end$ 
* @Param         $MethodArg$ 

* @Returns     $SymbolType$ 
*/ 
/* —————————————————————————-*/ 
       然后记得DoxygenWizard的这个工作目录是一定要点选的,这里有个触发,如果直接复制路径进去是无法run doxygen的。image

      最后是中文编码的问题,如果你的项目是GBK编码,那么要防止乱码必须要做的事情是设置工程为UTF-8编码,而设置输入为GBK。切记。

image

image

原文地址:https://www.cnblogs.com/sdqxcxh/p/2427747.html