First public contribution.
1 ///////////////////////////////////////////////////////////////////////////////
2 /// \file regex_traits.hpp
3 /// Includes the C regex traits or the CPP regex traits header file depending on the
4 /// BOOST_XPRESSIVE_USE_C_TRAITS macro.
6 // Copyright 2004 Eric Niebler. Distributed under the Boost
7 // Software License, Version 1.0. (See accompanying file
8 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
10 #ifndef BOOST_XPRESSIVE_REGEX_TRAITS_HPP_EAN_10_04_2005
11 #define BOOST_XPRESSIVE_REGEX_TRAITS_HPP_EAN_10_04_2005
13 // MS compatible compilers support #pragma once
14 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
18 #include <boost/xpressive/detail/detail_fwd.hpp>
20 #ifdef BOOST_XPRESSIVE_USE_C_TRAITS
21 # include <boost/xpressive/traits/c_regex_traits.hpp>
23 # include <boost/xpressive/traits/cpp_regex_traits.hpp>
26 namespace boost { namespace xpressive
29 ///////////////////////////////////////////////////////////////////////////////
30 // regex_traits_version_1_tag
31 /// Tag used to denote that a traits class conforms to the version 1 traits
33 struct regex_traits_version_1_tag
37 ///////////////////////////////////////////////////////////////////////////////
38 // regex_traits_version_1_case_fold_tag
39 /// Tag used to denote that a traits class has the fold_case member function.
40 struct regex_traits_version_1_case_fold_tag
41 : regex_traits_version_1_tag
45 ///////////////////////////////////////////////////////////////////////////////
47 /// Thin wrapper around the default regex_traits implementation, either
48 /// cpp_regex_traits or c_regex_traits
50 template<typename Char, typename Impl>
54 typedef typename Impl::locale_type locale_type;
61 explicit regex_traits(locale_type const &loc)
67 ///////////////////////////////////////////////////////////////////////////////
70 template<typename Traits, std::size_t N>
71 inline typename Traits::char_class_type
72 lookup_classname(Traits const &traits, char const (&cname)[N], bool icase)
74 typename Traits::char_type name[N] = {0};
75 for(std::size_t j = 0; j < N-1; ++j)
77 name[j] = traits.widen(cname[j]);
79 return traits.lookup_classname(name, name + N - 1, icase);