1 /*============================================================================= 2 Copyright (c) 2006 Tobias Schwinger 3 http://spirit.sourceforge.net/ 4 5 Distributed under the Boost Software License, Version 1.0. (See accompanying 6 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 7 =============================================================================*/ 8 #if !defined(BOOST_SPIRIT_TREE_AST_FWD_HPP) 9 #define BOOST_SPIRIT_TREE_AST_FWD_HPP 10 11 #include <boost/spirit/home/classic/namespace.hpp> 12 #include <boost/spirit/home/classic/core/nil.hpp> 13 14 namespace boost { namespace spirit { 15 16 BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN 17 18 template < 19 typename MatchPolicyT, 20 typename NodeFactoryT, 21 typename T = nil_t 22 > 23 struct ast_tree_policy; 24 25 template < 26 typename IteratorT, 27 typename NodeFactoryT = node_val_data_factory<nil_t>, 28 typename T = nil_t 29 > 30 struct ast_match_policy; 31 32 template <typename T> 33 struct gen_ast_node_parser; 34 35 struct root_node_op; 36 37 BOOST_SPIRIT_CLASSIC_NAMESPACE_END 38 39 }} // namespace BOOST_SPIRIT_CLASSIC_NS 40 41 #endif 42 43