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