Back to home page

EIC code displayed by LXR

 
 

    


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

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         icu.hpp
0015   *   VERSION      see <boost/version.hpp>
0016   *   DESCRIPTION: Unicode regular expressions on top of the ICU Library.
0017   */
0018 
0019 #ifndef BOOST_REGEX_ICU_HPP
0020 #define BOOST_REGEX_ICU_HPP
0021 
0022 #include <boost/regex/config.hpp>
0023 
0024 #ifdef BOOST_REGEX_CXX03
0025 #include <boost/regex/v4/icu.hpp>
0026 #else
0027 #include <boost/regex/v5/icu.hpp>
0028 #endif
0029 
0030 #endif