Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/utility/string_ref_fwd.hpp @ 125:34e428693f5d vext
Vext -> Repoint
author | Chris Cannam |
---|---|
date | Thu, 14 Jun 2018 11:15:39 +0100 |
parents | 2665513ce2d3 |
children |
rev | line source |
---|---|
Chris@16 | 1 /* |
Chris@16 | 2 Copyright (c) Marshall Clow 2012-2012. |
Chris@16 | 3 |
Chris@16 | 4 Distributed under the Boost Software License, Version 1.0. (See accompanying |
Chris@16 | 5 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
Chris@16 | 6 |
Chris@16 | 7 For more information, see http://www.boost.org |
Chris@16 | 8 |
Chris@16 | 9 Based on the StringRef implementation in LLVM (http://llvm.org) and |
Chris@16 | 10 N3422 by Jeffrey Yasskin |
Chris@16 | 11 http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2012/n3442.html |
Chris@16 | 12 |
Chris@16 | 13 */ |
Chris@16 | 14 |
Chris@16 | 15 #ifndef BOOST_STRING_REF_FWD_HPP |
Chris@16 | 16 #define BOOST_STRING_REF_FWD_HPP |
Chris@16 | 17 |
Chris@16 | 18 #include <boost/config.hpp> |
Chris@16 | 19 #include <string> |
Chris@16 | 20 |
Chris@16 | 21 namespace boost { |
Chris@16 | 22 |
Chris@16 | 23 template<typename charT, typename traits = std::char_traits<charT> > class basic_string_ref; |
Chris@16 | 24 typedef basic_string_ref<char, std::char_traits<char> > string_ref; |
Chris@16 | 25 typedef basic_string_ref<wchar_t, std::char_traits<wchar_t> > wstring_ref; |
Chris@16 | 26 |
Chris@16 | 27 #ifndef BOOST_NO_CXX11_CHAR16_T |
Chris@16 | 28 typedef basic_string_ref<char16_t, std::char_traits<char16_t> > u16string_ref; |
Chris@16 | 29 #endif |
Chris@16 | 30 |
Chris@16 | 31 #ifndef BOOST_NO_CXX11_CHAR32_T |
Chris@16 | 32 typedef basic_string_ref<char32_t, std::char_traits<char32_t> > u32string_ref; |
Chris@16 | 33 #endif |
Chris@16 | 34 |
Chris@16 | 35 } |
Chris@16 | 36 |
Chris@16 | 37 #endif |