File indexing completed on 2025-01-31 10:02:06
0001
0002
0003
0004
0005
0006
0007
0008 #if !defined(BOOST_SPIRIT_TREE_AST_FWD_HPP)
0009 #define BOOST_SPIRIT_TREE_AST_FWD_HPP
0010
0011 #include <boost/spirit/home/classic/namespace.hpp>
0012 #include <boost/spirit/home/classic/core/nil.hpp>
0013
0014 namespace boost { namespace spirit {
0015
0016 BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
0017
0018 template <
0019 typename MatchPolicyT,
0020 typename NodeFactoryT,
0021 typename T = nil_t
0022 >
0023 struct ast_tree_policy;
0024
0025 template <
0026 typename IteratorT,
0027 typename NodeFactoryT = node_val_data_factory<nil_t>,
0028 typename T = nil_t
0029 >
0030 struct ast_match_policy;
0031
0032 template <typename T>
0033 struct gen_ast_node_parser;
0034
0035 struct root_node_op;
0036
0037 BOOST_SPIRIT_CLASSIC_NAMESPACE_END
0038
0039 }}
0040
0041 #endif
0042