Boost logo

Boost :

From: Angus Leeming (angus.leeming_at_[hidden])
Date: 2004-09-27 03:50:15


Next question ;-)

I find that boostbook can handle doxygen docs for classes and for functions
but it ignores enums totally. That's both enums nested in classes and
global enums. Any chance of getting it to add glob_flags.html to the list
below?

Regards,
Angus

Writing globbing.user_guide.html for section(globbing.user_guide)
Writing bad_glob.html for refentry(bad_glob)
Writing glob_iterator.html for refentry(glob_iterator)
Writing glob_predicate.html for refentry(glob_predicate)
Writing glob_traits.html for refentry(glob_traits)
Writing glob.html for refentry(glob)
Writing globbing.reference.html for section(globbing.reference)
Writing globbing.history_and_acknowledgements.html for
section(globbing.history_and_acknowledgements)
Writing index.html for chapter(globbing)
Writing HTML.manifest

namespace boost {

/** @brief The boost::glob function accepts a @c glob_flags
 * argument made up of a bitwise OR of zero or more of the
 * following symbolic constants.
 */
enum glob_flags {
    /** The vanilla, POSIX glob behaviour. */
    glob_basic = 0,
    /** Do not sort the returned pathnames. */
    glob_nosort = (1 << 0),
    /** If no pattern matches, return the original pattern. */
    glob_nocheck = (1 << 1),
    /** Characters (including meta chars) cannot be quoted by backslashes.
*/
    glob_noescape = (1 << 2),
    /** csh-style brace expressions {foo,bar} are expanded.
     * The glob will match either alternative.
     */
    glob_brace = (1 << 3),
    /** Only directories are matched. */
    glob_onlydir = (1 << 4)
};

} // namespace boost


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk