I noticed that new versions of doxygen (I have 1.8.1.1) produce class lists where the nesting is done hierarchically, such as:
- namespace
- MyClass1
- MyClass2
e.g. http://www.itk.org/Doxygen/html/annotated.html
I much rather want to have the old style of the class list:
- namespace::MyClass1
- namespace::MyClass2
e.g. http://trilinos.sandia.gov/packages/docs/r10.8/packages/tpetra/doc/html/annotated.html
Is there a setting in the doxyfile with which I can get the old style?
My reasoning behind this request is, that I usually search for my C++ classes in by searching for "namespace::MyClass". Usually even "::My" finds the right class very fast. In the new style I no longer know how to do that.