File indexing completed on 2025-01-31 10:02:08
0001
0002
0003
0004
0005
0006
0007
0008 #if !defined(BOOST_SPIRIT_LISTS_FWD_HPP)
0009 #define BOOST_SPIRIT_LISTS_FWD_HPP
0010
0011 #include <boost/spirit/home/classic/namespace.hpp>
0012 #include <boost/spirit/home/classic/core/parser.hpp>
0013
0014 namespace boost { namespace spirit {
0015
0016 BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
0017
0018 struct no_list_endtoken;
0019
0020 template <
0021 typename ItemT, typename DelimT, typename EndT = no_list_endtoken,
0022 typename CategoryT = plain_parser_category
0023 >
0024 struct list_parser;
0025
0026 BOOST_SPIRIT_CLASSIC_NAMESPACE_END
0027
0028 }}
0029
0030 #endif
0031