Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-31 10:02:06

0001 /*=============================================================================
0002     Copyright (c) 2006 Tobias Schwinger
0003     http://spirit.sourceforge.net/
0004 
0005   Distributed under the Boost Software License, Version 1.0. (See accompanying
0006   file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0007 =============================================================================*/
0008 #if !defined(BOOST_SPIRIT_TREE_PARSE_TREE_FWD_HPP)
0009 #define BOOST_SPIRIT_TREE_PARSE_TREE_FWD_HPP
0010 
0011 #include <boost/spirit/home/classic/namespace.hpp>
0012 
0013 namespace boost { namespace spirit {
0014 
0015 BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
0016 
0017     template <
0018         typename MatchPolicyT, 
0019         typename NodeFactoryT,
0020         typename T = nil_t
0021     >
0022     struct pt_tree_policy;
0023 
0024     template <
0025         typename IteratorT,
0026         typename NodeFactoryT = node_val_data_factory<nil_t>,
0027         typename T = nil_t
0028     >
0029     struct pt_match_policy;
0030 
0031     template <typename T>
0032     struct gen_pt_node_parser;
0033 
0034 BOOST_SPIRIT_CLASSIC_NAMESPACE_END
0035 
0036 }} // namespace BOOST_SPIRIT_CLASSIC_NS
0037 
0038 #endif
0039