Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:51:20

0001 /*
0002  *
0003  * Copyright (c) 2020
0004  * John Maddock
0005  *
0006  * Use, modification and distribution are subject to the 
0007  * Boost Software License, Version 1.0. (See accompanying file 
0008  * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0009  *
0010  */
0011  
0012  /*
0013   *   LOCATION:    see http://www.boost.org for most recent version.
0014   *   FILE         unicode_iterator.hpp
0015   *   VERSION      see <boost/version.hpp>
0016   *   DESCRIPTION: Iterator adapters for converting between different Unicode encodings.
0017   */
0018 
0019 #ifndef BOOST_REGEX_PENDING_UNICODE_ITERATOR_HPP
0020 #define BOOST_REGEX_PENDING_UNICODE_ITERATOR_HPP
0021 
0022 #include <boost/regex/config.hpp>
0023 
0024 #if defined(BOOST_REGEX_CXX03)
0025 #include <boost/regex/v4/unicode_iterator.hpp>
0026 #else
0027 #include <boost/regex/v5/unicode_iterator.hpp>
0028 #endif
0029 
0030 
0031 #endif // BOOST_REGEX_PENDING_UNICODE_ITERATOR_HPP
0032