ast_fwd.hpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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_AST_FWD_HPP)
  8. #define BOOST_SPIRIT_TREE_AST_FWD_HPP
  9. #include <boost/spirit/home/classic/namespace.hpp>
  10. #include <boost/spirit/home/classic/core/nil.hpp>
  11. namespace boost { namespace spirit {
  12. BOOST_SPIRIT_CLASSIC_NAMESPACE_BEGIN
  13. template <
  14. typename MatchPolicyT,
  15. typename NodeFactoryT,
  16. typename T = nil_t
  17. >
  18. struct ast_tree_policy;
  19. template <
  20. typename IteratorT,
  21. typename NodeFactoryT = node_val_data_factory<nil_t>,
  22. typename T = nil_t
  23. >
  24. struct ast_match_policy;
  25. template <typename T>
  26. struct gen_ast_node_parser;
  27. struct root_node_op;
  28. BOOST_SPIRIT_CLASSIC_NAMESPACE_END
  29. }} // namespace BOOST_SPIRIT_CLASSIC_NS
  30. #endif