I have an issue I could not resolve by myself. Help please.
I have (conditionally):
/** @mainpage A
@subpage B
*/
/** @page B
@subpage C
*/
/** @page C */
Doxygen makes the tree where all the pages are shown on the root level.
+A/
|---B/
|------C
|---B <- WANT TO HIDE
|---C <- WANT TO HIDE
but I need only top (A here and nested B & C) to be visible i.e. should be organized accordingly @subpage tags.
I also tried to set visible to 'no' in DoxygenLayout.xml. But it hides all the pages, only 'files' and 'classes' are left.
Thanx in advance.