例如,我有两个函数a&B喜欢:
void aFunction();
Q_INVOKABLE void bFunction();
在功能delcaration之前输入/**
,然后按enter
:
/**
* @brief A
*/
void aFunction();
/**
Q_INVOKABLE void bFunction();
这是一个错误吗?
OS:Windows 7QTCreator版本:3.1.2和4.3.1
我当前的解决方案是:
首先,写下:
Q_INVOKABLE
void aFunction();
然后在函数上方输入/**
。
Q_INVOKABLE
/**
* @brief aFunction
*/
void aFunction();