File indexing completed on 2025-01-18 09:53:49
0001
0002
0003
0004
0005
0006
0007
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