Chris@16: /* Chris@16: Copyright (c) Marshall Clow 2012-2012. Chris@16: Chris@16: Distributed under the Boost Software License, Version 1.0. (See accompanying Chris@16: file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: Chris@16: For more information, see http://www.boost.org Chris@16: Chris@16: Based on the StringRef implementation in LLVM (http://llvm.org) and Chris@16: N3422 by Jeffrey Yasskin Chris@16: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3442.html Chris@16: Chris@16: */ Chris@16: Chris@16: #ifndef BOOST_STRING_REF_FWD_HPP Chris@16: #define BOOST_STRING_REF_FWD_HPP Chris@16: Chris@16: #include Chris@16: #include Chris@16: Chris@16: namespace boost { Chris@16: Chris@16: template > class basic_string_ref; Chris@16: typedef basic_string_ref > string_ref; Chris@16: typedef basic_string_ref > wstring_ref; Chris@16: Chris@16: #ifndef BOOST_NO_CXX11_CHAR16_T Chris@16: typedef basic_string_ref > u16string_ref; Chris@16: #endif Chris@16: Chris@16: #ifndef BOOST_NO_CXX11_CHAR32_T Chris@16: typedef basic_string_ref > u32string_ref; Chris@16: #endif Chris@16: Chris@16: } Chris@16: Chris@16: #endif