I want Doxygen to force extraction of only specific private class members. I know about the EXTRACT_PRIVATE
option, but it extracts all private members. I want to be able to pick and choose which private members I want to be extracted.
For example something like the following:
class Foo {
private:
/** @forceextract
* @brief Something about this function.
*/
void foo1();
/** @brief Something about this other function.
*/
void foo2();
};
foo1()
's documentation should be extracted though it is private, but foo2()
should be left alone.
Is it possible to do this?