2005-01-13 17:06:21 +00:00
|
|
|
/*
|
|
|
|
*
|
2020-12-10 16:47:08 +00:00
|
|
|
* Copyright (c) 2020
|
2005-01-21 17:22:39 +00:00
|
|
|
* John Maddock
|
2005-01-13 17:06:21 +00:00
|
|
|
*
|
|
|
|
* Use, modification and distribution are subject to the
|
|
|
|
* Boost Software License, Version 1.0. (See accompanying file
|
|
|
|
* LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* LOCATION: see http://www.boost.org for most recent version.
|
|
|
|
* FILE icu.hpp
|
|
|
|
* VERSION see <boost/version.hpp>
|
|
|
|
* DESCRIPTION: Unicode regular expressions on top of the ICU Library.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BOOST_REGEX_ICU_HPP
|
|
|
|
#define BOOST_REGEX_ICU_HPP
|
|
|
|
|
2020-12-10 16:47:08 +00:00
|
|
|
#include <boost/regex/config.hpp>
|
2010-05-10 12:13:49 +00:00
|
|
|
|
2020-11-26 16:47:48 +00:00
|
|
|
#ifdef BOOST_REGEX_CXX03
|
2020-12-10 16:47:08 +00:00
|
|
|
#include <boost/regex/v4/icu.hpp>
|
2020-11-26 16:47:48 +00:00
|
|
|
#else
|
2020-12-10 16:47:08 +00:00
|
|
|
#include <boost/regex/v5/icu.hpp>
|
2020-11-26 16:47:48 +00:00
|
|
|
#endif
|
2005-01-13 17:06:21 +00:00
|
|
|
|
|
|
|
#endif
|