如何使用Q_INVOKABLE进行doxygen注释功能

时间:2017-10-05 05:38:56

标签: qt qt-creator qdoc

例如,我有两个功能A& B喜欢:

void aFunction();

Q_INVOKABLE void bFunction();

在退出功能之前输入/**,然后按enter

 /**
 * @brief A
 */
void aFunction();

/**
Q_INVOKABLE void bFunction();

这是一个BUG吗?

操作系统:Windows 7 QtCreator版本:3.1.2和4.3.1

1 个答案:

答案 0 :(得分:0)

我目前的解决方案是:

首先,写一下:

empty

然后在函数上方输入Q_INVOKABLE void aFunction();

/**