标签: c++ templates doxygen
template <typename a, typename b, typename c, typename d> class Aclass { template <typename e> void foo() { } };
记录foo给我一个像这样的结果:
void Aclass<a, b, c, d>::foo()
使用更多模板参数,成员函数的类范围变得越来越乏味。有没有办法缩短输出,为每个成员函数说Aclass?
Aclass