Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Struct template symbol_parser

boost::parser::symbol_parser

Synopsis

// In header: <boost/parser/parser_fwd.hpp>

template<typename T> 
struct symbol_parser {
};

Description

Matches one of a set S of possible inputs, each of which is associated with an attribute value of type T, forming a symbol table. New elements and their associated attributes may be added to or removed from S dynamically, during parsing; any such changes are reverted at the end of parsing. The parse succeeds iff an element of S is matched.

See Also: symbols


PrevUpHomeNext