标签: c++ subclass doxygen using
如果我有一个子类,使用"重新引入基类成员,使用",如何让doxygen为这些成员创建条目/文档?
class Foo { protected: virtual void hello(); }; class Bar : protected Foo { public: /** * \brief Reintroduced * This documentation will not show up :-( */ using Foo::hello; };