Given some code, as in the following example:
class MyClass;
class Injector {
friend MyClass operator+(MyClass a, MyClass b) { ... }
};
class MyClass: private Injector {};
How to get doxygen to include documentation operator+()on the MyClass class documentation page? Functionally, this clearly belongs. Is there any general way to make an oxygen document function available through ADL?
A useful example in the real world: I would like doxygen to include the operators provided by the base classes in boost/operators.hpp.
source
share