The GROUP_NESTED_COMPOUNDS option means that types nested inside inline namespaces or other classes will be automatically added to a Doxygen group, e.g. this actually works as intended: /** * @defgroup chrono Time * @ingroup utilities * * Classes and functions for time. * @{ */ namespace chrono { template<typename _Rep, typename _Period = ratio<1>> struct duration; template<typename _Clock, typename _Dur = typename _Clock::duration> struct time_point; } /// @} Currently chrono::duration and chrono::time_point are not added to the "chrono" group. They would need an explicit @ingroup tag added to them individually. With GROUP_NESTED_COMPOUNDS=YES they get added to the enclosing group. The SORT_BY_SCOPE_NAME option means that the list of classes will sort by class name, not the full qualified-id. Currently the alphabetical Class List for classes beginning with 'c' looks like: char_traits (__gnu_cxx) character (__gnu_cxx) condition_base (__gnu_cxx) const_iterator_ condition_variable_any (std::_V2) cauchy_distribution (std) char_traits (std) i.e. the list is sorted by the namespaces first, then the class names. This is not helpful when you don't know which namespace a class might be in, and inline namespaces with reserved names are not hidden (see https://github.com/doxygen/doxygen/issues/5914 for a feature request to allow that). With SORT_BY_SCOPE_NAME=NO the list looks like: cauchy_distribution (std) char_traits (__gnu_cxx) char_traits (std) character (__gnu_cxx) condition_base (__gnu_cxx) condition_variable_any (std::_V2) const_iterator_ This allows you to find a class by name more easily. Also add PREDEFINED macros so that __attribute__ and various macros like _GLIBCXX_NO_DISCARD, _GLIBCXX14_CONSTEXPR don't appear in the generated docs. * doc/doxygen/user.cfg.in: Regenerate with Doxygen 1.8.14 and set GROUP_NESTED_COMPOUNDS=YES and SORT_BY_SCOPE_NAME=NO. Add various _GLIBCXX_xxx macros and __attribute__(X) to PREDEFINED macros that Doxygen expands. From-SVN: r270802
Name |
Last commit
|
Last update |
---|---|---|
.. | ||
config | Loading commit data... | |
doc | Loading commit data... | |
include | Loading commit data... | |
libsupc++ | Loading commit data... | |
po | Loading commit data... | |
python | Loading commit data... | |
scripts | Loading commit data... | |
src | Loading commit data... | |
testsuite | Loading commit data... | |
ChangeLog | Loading commit data... | |
ChangeLog-1998 | Loading commit data... | |
ChangeLog-1999 | Loading commit data... | |
ChangeLog-2000 | Loading commit data... | |
ChangeLog-2001 | Loading commit data... | |
ChangeLog-2002 | Loading commit data... | |
ChangeLog-2003 | Loading commit data... | |
ChangeLog-2004 | Loading commit data... | |
ChangeLog-2005 | Loading commit data... | |
ChangeLog-2006 | Loading commit data... | |
ChangeLog-2007 | Loading commit data... | |
ChangeLog-2008 | Loading commit data... | |
ChangeLog-2009 | Loading commit data... | |
ChangeLog-2010 | Loading commit data... | |
ChangeLog-2011 | Loading commit data... | |
ChangeLog-2012 | Loading commit data... | |
ChangeLog-2013 | Loading commit data... | |
ChangeLog-2014 | Loading commit data... | |
ChangeLog-2015 | Loading commit data... | |
ChangeLog-2016 | Loading commit data... | |
ChangeLog-2017 | Loading commit data... | |
ChangeLog-2018 | Loading commit data... | |
Makefile.am | Loading commit data... | |
Makefile.in | Loading commit data... | |
README | Loading commit data... | |
acinclude.m4 | Loading commit data... | |
aclocal.m4 | Loading commit data... | |
config.h.in | Loading commit data... | |
configure | Loading commit data... | |
configure.ac | Loading commit data... | |
configure.host | Loading commit data... | |
crossconfig.m4 | Loading commit data... | |
fragment.am | Loading commit data... | |
linkage.m4 | Loading commit data... |