View Single Post
Old 11-28-2011, 09:49 AM   #12
MartinZ
Zealot
MartinZ doesn't litterMartinZ doesn't litter
 
Posts: 110
Karma: 138
Join Date: Mar 2011
Device: PB903, PB603
changes

Hi developers,

1) I added / unified groups and subgroups and added comments (most of them like commented in yann's 14.1 documentation)

2) I changed doxfile so we get a treeview left side screen in doxygen - generated documentation

3) I used grouping scheme:

Code:
 //! \defgroup Groupname Description 
  //! \{

  //! \}
or

Code:
 //! \addtogroup Groupname  
  //! \{

  //! \}

for the main groups like "Graphics"

and

Code:
 //! \defgroup Groupname Description 
  //! @{

  //! @}
or

Code:
 //! \addtogroup Groupname 
  //! @{

  //! @}

"@" and "\" do the same - but this way you can see directly that "@" includes subgroups.

and I used

Code:
//! \name Description
//! @{


//! @}
for additional structuring.
MartinZ is offline   Reply With Quote