-----Original Message----- From: Boost [mailto:boost-bounces@lists.boost.org] On Behalf Of Zach Laine Sent: 13 January 2017 15:29 To: boost@lists.boost.org Subject: Re: [boost] Interest in updated expression template library?
On Fri, Jan 13, 2017 at 4:12 AM, Paul A. Bristow
wrote: Boost Autoindex and Doxygen, preferably with Doxygen-syntax comments in the code explaining what function do etc, will allow various indexes (function, classes, everything...) to the be built (and rebuilt) automatically. Recommended - from reading my own documentation some years later!
Thanks, Paul. How do I turn on Autoindex? I'm using the full Boost documentation toolchain.
RTFM ;-) http://www.boost.org/doc/libs/1_63_0/tools/auto_index/doc/html/index.html You can just get indexes of macro, class, functions, and by adding index terms to your .idx file, you can get a subject index too. To see the autoindex in (big!) action, look at Boost.Math docs. Attached example may help too modular-boost\libs\circular_buffer\doc\jamfile.v2 may help is making the admittedly non-trivial changes to get a full index. You need some items in your .qbk file too (to say which indexes you want). [/Include the indexes (class, function and everything) ] ''' <index type="class_name"> <title>Class Index</title> </index> <index type="function_name"> <title>Function Index</title> </index> <index/> ''' Mail me privately if you need more help. Paul