拆分doxygen命令

时间:2014-04-01 07:13:18

标签: c doxygen

我想使用doxygen来评论c文件。因此,我想启动一个doxygen命令然后有一部分代码,然后应该有doxygen命令的其余部分。

有没有办法告诉doxygen命令没有完成?

实施例: 我想绘制一个开关盒的图片,我想为图片中的每个案例添加块。

switch (condition)

{

  case VALUE_1:

    /**
    \dot
    digraph TESTMAIN {

    case_1 [label="Init"];

    ## here I want to stop the doxygen command ##
    */

  case VALUE_2:

    /**

    ## here I want to go on with the old command ##

    case_1 -> case_2 [label="Zustandsübergang1"];
    case_2 [shape=diamond, label="Aufbau"];
    }
    \enddot
    */

 }

0 个答案:

没有答案