2000-09-26 11:48:28 +00:00
|
|
|
/*
|
|
|
|
*
|
2002-04-24 10:50:23 +00:00
|
|
|
* Copyright (c) 1998-2002
|
2005-01-21 17:22:39 +00:00
|
|
|
* John Maddock
|
2000-09-26 11:48:28 +00:00
|
|
|
*
|
2003-10-04 11:29:20 +00:00
|
|
|
* Use, modification and distribution are subject to the
|
2003-09-30 13:02:51 +00:00
|
|
|
* Boost Software License, Version 1.0. (See accompanying file
|
|
|
|
* LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
2000-09-26 11:48:28 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* LOCATION: see http://www.boost.org for most recent version.
|
2001-09-19 11:48:51 +00:00
|
|
|
* FILE regex_traits.hpp
|
2001-09-30 10:30:14 +00:00
|
|
|
* VERSION see <boost/version.hpp>
|
2000-09-26 11:48:28 +00:00
|
|
|
* DESCRIPTION: Declares regular expression traits classes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BOOST_REGEX_TRAITS_HPP
|
|
|
|
#define BOOST_REGEX_TRAITS_HPP
|
|
|
|
|
2003-05-17 11:45:48 +00:00
|
|
|
#ifndef BOOST_REGEX_CONFIG_HPP
|
|
|
|
# include <boost/regex/config.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef BOOST_REGEX_V3
|
|
|
|
# ifndef BOOST_REGEX_TRAITS_HPP_INCLUDED
|
|
|
|
# include <boost/regex/v3/regex_traits.hpp>
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# ifndef BOOST_REGEX_TRAITS_HPP_INCLUDED
|
|
|
|
# include <boost/regex/v4/regex_traits.hpp>
|
|
|
|
# endif
|
2000-09-26 11:48:28 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // include
|
|
|
|
|
2001-09-19 11:48:51 +00:00
|
|
|
|
2002-04-24 10:50:23 +00:00
|
|
|
|
2002-11-07 12:50:29 +00:00
|
|
|
|
2003-09-30 13:02:51 +00:00
|
|
|
|