[Doxygen-users] How to force extraction of only specific private class members?
Brought to you by:
dimitri
From: Arvind P. <arv...@gm...> - 2013-11-08 06:59:57
|
Hi, I want Doxygen to force extraction of only specific private class members. I know about the EXTRACT_PRIVATE<http://www.stack.nl/%7Edimitri/doxygen/manual/config.html#cfg_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? Note: Also asked this question on SO here<http://stackoverflow.com/q/19852936/252576>( http://stackoverflow.com/q/19852936/252576) Regards, Arvind Pai |