Doxgen Implementationsdetails ausschließen
-
Hi,
ich komme gerade nicht darauf, wie ich Implementationsdetails komplett aus der Dokumentation halten kann. Also zb:namespace Detail { struct MatrixStorage { ... }; } class Matrix { private: Detail::MatrixStorage storage; ... }
Hier möchte ich Detail::MatrixStorage komplett aus der Doku haben. Wie geht das nochmal?
Danke und Grüße,
Ethon
-
#ifndef DOXYGEN_SHOULD_SKIP_THIS foo #endif
-
Danke !