【发布时间】:2011-02-25 17:51:11
【问题描述】:
有没有办法像这样记录模板参数:
template<
int N, ///< description
typename T ///< description
>
而不是用tparam?列出每个参数?
请注意,在当前的 doxygen 中可以像这样记录函数参数:
void function(int a /**< description */);
如果没有,实施起来有多难? 如果你熟悉 doxygen 的内部结构,你能告诉我实现它的方向吗?
谢谢
【问题讨论】:
标签: c++ templates documentation doxygen