I’m trying create a document with the structure:
+ Header
+-+ A
+-+ B
+-+ C
My source code is:
/**
\defgroup bigsection Header
@{
\defgroup sectionA A
@{
A
@}
\defgroup sectionB B
@{
B
@}
\defgroup sectionC C
@{
C
@}
@}
*/
What I end up with is the following structure:
+ Header
+-+ A
+-+ B
+ C
Does anyone know why?
Looks like this was a bug in Doxygen. Is resolved in later versions.