【发布时间】:2009-06-10 05:59:55
【问题描述】:
我有一个 .cpp 文件,发现 Doxygen 无法记录包含以下格式的函数:
//!
//! \brief Test
//! and perform operations on those points.
//!
void CTest::TestTri()
EH_Start("CTest::TestTri")
{
}
EH_Stop
EH_Start 和 EH_Stop 是一种异常处理机制,会导致问题。
我们如何排除这些?
【问题讨论】:
标签: c++ documentation doxygen