string.hpp 603 B

1234567891011121314151617181920212223242526
  1. #ifndef BOOST_METAPARSE_STRING_HPP
  2. #define BOOST_METAPARSE_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/v1/string.hpp>
  8. #include <boost/metaparse/string_tag.hpp>
  9. #ifdef BOOST_METAPARSE_STRING
  10. # error BOOST_METAPARSE_STRING already defined
  11. #endif
  12. #define BOOST_METAPARSE_STRING BOOST_METAPARSE_V1_STRING
  13. namespace boost
  14. {
  15. namespace metaparse
  16. {
  17. using v1::string;
  18. }
  19. }
  20. #endif