parse_tree_fwd.hpp 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*=============================================================================
  2. Copyright (c) 2006 Tobias Schwinger
  3. http://spirit.sourceforge.net/
  4. Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. =============================================================================*/
  7. #if !defined(BOOST_SPIRIT_TREE_PARSE_TREE_FWD_HPP)
  8. #define BOOST_SPIRIT_TREE_PARSE_TREE_FWD_HPP
  9. #include <boost/spirit/home/classic/namespace.hpp>
  10. namespace boost { namespace spirit {
  11. BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
  12. template <
  13. typename MatchPolicyT,
  14. typename NodeFactoryT,
  15. typename T = nil_t
  16. >
  17. struct pt_tree_policy;
  18. template <
  19. typename IteratorT,
  20. typename NodeFactoryT = node_val_data_factory<nil_t>,
  21. typename T = nil_t
  22. >
  23. struct pt_match_policy;
  24. template <typename T>
  25. struct gen_pt_node_parser;
  26. BOOST_SPIRIT_CLASSIC_NAMESPACE_END
  27. }} // namespace BOOST_SPIRIT_CLASSIC_NS
  28. #endif