Given some code like in the following example:
class MyClass;
class Injector {
/**
* @brief MyClass addition.
*/
friend MyClass operator+(MyClass a, MyClass b) { ... }
};
class MyClass: private Injector {};
How can I make doxygen include the documentation of operator+() on the documentation page of the MyClass class? Functionally it clearly belongs there. Is there some general way to make doxygen document functionality available through ADL?
A useful example in the real world: I'd like doxygen to include operators provided by the base classes in boost/operators.hpp.