1 // Copyright Abel Sinkovics (abel@sinkovics.hu) 2013. 2 // Distributed under the Boost Software License, Version 1.0. 3 // (See accompanying file LICENSE_1_0.txt or copy at 4 // http://www.boost.org/LICENSE_1_0.txt) 5 6 #include <boost/metaparse/v1/string.hpp> 7 8 // Include guard is after including v1/string.hpp to make it re-includable 9 #ifndef BOOST_METAPARSE_STRING_HPP 10 #define BOOST_METAPARSE_STRING_HPP 11 12 #include <boost/metaparse/string_tag.hpp> 13 14 #ifdef BOOST_METAPARSE_STRING 15 # error BOOST_METAPARSE_STRING already defined 16 #endif 17 #define BOOST_METAPARSE_STRING BOOST_METAPARSE_V1_STRING 18 19 namespace boost 20 { 21 namespace metaparse 22 { 23 using v1::string; 24 } 25 } 26 27 #endif 28 29