Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:53:49

0001 ///////////////////////////////////////////////////////////////////////////////
0002 /// \file regex_domain.hpp
0003 /// Contains the definition of the regex_domain type
0004 //
0005 //  Copyright 2009 Eric Niebler. Distributed under the Boost
0006 //  Software License, Version 1.0. (See accompanying file
0007 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
0008 
0009 #ifndef BOOST_XPRESSIVE_DETAIL_CORE_REGEX_DOMAIN_HPP_EAN_12_12_2009
0010 #define BOOST_XPRESSIVE_DETAIL_CORE_REGEX_DOMAIN_HPP_EAN_12_12_2009
0011 
0012 #include <boost/xpressive/xpressive_fwd.hpp>
0013 #include <boost/proto/traits.hpp>
0014 #include <boost/proto/domain.hpp>
0015 #include <boost/proto/generate.hpp>
0016 
0017 namespace boost { namespace xpressive { namespace detail
0018 {
0019     struct regex_domain
0020       : proto::domain<proto::default_generator, proto::not_<proto::address_of<proto::_> > >
0021     {};
0022 }}}
0023 
0024 #endif