Generally I want Doxygen to allow viewing the source code of documented files. But I want a part of the source code to be hidden. I know how to force Doxygen not to document certain piece of code (e.g. with /cond /endcond), but it still appears when clicking on "Go to the source code of this file".
What I actually want is: if something is not commented in Doxygen-style, it shall appear nowhere at all, not in the documentation nor within "Go to the source code of this file". This shall be the case for functions as well as for #-defines or whatever.
I use @hideinitializer to hide the initializer for #-defines. That works well within the documentation. But again, the initializer is still shown within the source code.
Does anybody have any suggestions?