0

I want doxygen to skip one of my C++ classes - and I do not want to tell it to skip the class using files external to the code itself; it has to be inline doxygen markup.

I know I can do this with:

///@cond
struct Foo { ... }
///@endcond

but I really don't like:

  1. That the word "code" does not intuitively come across as "not to be documented"
  2. That you have an opening and closing command.

I would really have liked to have something like:

///@undocumented
struct Foo { ... }

is this doable achievable Doxygen (or some other way)?

Notes:

einpoklum
  • 118,144
  • 57
  • 340
  • 684
  • In the header you mention \cond in the description \code, I assume you meant in the description also \cond. There is another way by using the standard #if constructs. – albert Sep 24 '17 at 17:05
  • @albert: Yeah, sorry, mistype. – einpoklum Sep 24 '17 at 17:23

0 Answers0