I have a template class that contains a bunch of pure virtual and implemented virtual functions. Then I have children inherited from this class. I want to document functions in a virtual parent class and have child inheritance of this documentation in Doxygen.
For example (I cannot post a real source).
template <typename A> class Parent { virtual void pure() = 0; virtual void notpure() { ... } };
In another file with all relevant included (at least for the compiler)
class Child: public Parent<int> { void pure() { ... } };
Then I want Doxygen to create documentation for both classes with the same documentation for each function, unless I re-document the overridden function.
I am running Ubuntu 14.04 and using the Doxygen 1.8.6 repository in case that matters.
thanks
source share