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
------------------------------------------------------------------------------
November Webinars for C, C++, Fortran Developers
Accelerate application performance with scalable programming models. Explore
techniques for threading, error checking, porting, and tuning. Get the most 
from the latest Intel processors and coprocessors. See abstracts and register
http://pubads.g.doubleclick.net/gampad/clk?id=60136231&iu=/4140/ostg.clktrk
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to