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_PARSE_TREE_FWD_HPP) 9 #define BOOST_SPIRIT_TREE_PARSE_TREE_FWD_HPP 10 11 #include <boost/spirit/home/classic/namespace.hpp> 12 13 namespace boost { namespace spirit { 14 15 BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN 16 17 template < 18 typename MatchPolicyT, 19 typename NodeFactoryT, 20 typename T = nil_t 21 > 22 struct pt_tree_policy; 23 24 template < 25 typename IteratorT, 26 typename NodeFactoryT = node_val_data_factory<nil_t>, 27 typename T = nil_t 28 > 29 struct pt_match_policy; 30 31 template <typename T> 32 struct gen_pt_node_parser; 33 34 BOOST_SPIRIT_CLASSIC_NAMESPACE_END 35 36 }} // namespace BOOST_SPIRIT_CLASSIC_NS 37 38 #endif 39 40