Doxygen class and "old style"

I noticed that new versions of doxygen (I have 1.8.1.1) create lists of classes where nesting is performed hierarchically, for example:

  • Namespace
    • Myclass1
    • Myclass2

eg. http://www.itk.org/Doxygen/html/annotated.html

I really want to have an old style list of classes:

  • Namespace :: MyClass1
  • Namespace :: MyClass2

eg. http://trilinos.sandia.gov/packages/docs/r10.8/packages/tpetra/doc/html/annotated.html

Is there a parameter in the doxyfile with which I can get the old style?


My reasoning for this query is that I usually look for my C ++ classes by looking for "namespace :: MyClass". Usually even ":: My" finds the correct class very quickly. In the new style, I no longer know how to do this.

+4
source share
1 answer

Typically, an annotated index should have "level of detail" navigation, as you can see here: http://www.nsnam.org/doxygen/annotated.html
By clicking on the highest level (5 in the example), you will increase the entire index, and then you can easily find classes.

Another way is to use an annotated index:
http://www.nsnam.org/doxygen/classes.html

+1
source

All Articles