rnd*_*gen 7 c++ documentation doxygen
如何记录子类的重写方法或实现的虚方法?我应该使用@copydoc吗?
class A {
/**
* A detailed description........
*/
virtual int foo(int i);
}
class B : public A {
/** {I won't write the same description again.} */
int foo(int i);
}
Run Code Online (Sandbox Code Playgroud)