string.hpp 766 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef BOOST_METAPARSE_V1_CPP98_FWD_STRING_HPP
  2. #define BOOST_METAPARSE_V1_CPP98_FWD_STRING_HPP
  3. // Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. #include <boost/metaparse/limit_string_size.hpp>
  8. #include <boost/metaparse/v1/impl/no_char.hpp>
  9. #include <boost/preprocessor/repetition/enum_params_with_a_default.hpp>
  10. namespace boost
  11. {
  12. namespace metaparse
  13. {
  14. namespace v1
  15. {
  16. template <
  17. BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(
  18. BOOST_METAPARSE_LIMIT_STRING_SIZE,
  19. int C,
  20. BOOST_NO_CHAR
  21. )
  22. >
  23. struct string;
  24. }
  25. }
  26. }
  27. #endif