标签: c++ doxygen documentation-generation
如何将类方法(标记为const)的返回值设置为类属性,因此doxygen在文档中高亮显示它?
检查插图:
{"balance":200}
我尝试使用以下内容:class A { int attribute; public: int getAttribute()const; //<<- I need this return to show that it is atrribute } 和@return attribute都没有用,我也没有其他想法
class A { int attribute; public: int getAttribute()const; //<<- I need this return to show that it is atrribute }
@return attribute