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:
- That the word "code" does not intuitively come across as "not to be documented"
- 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:
A related question: