在使用Doxygen记录模板类成员函数时,如何简化签名?

时间:2017-05-06 10:52:12

标签: 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

0 个答案:

没有答案