regex_domain.hpp 834 B

123456789101112131415161718192021222324
  1. ///////////////////////////////////////////////////////////////////////////////
  2. /// \file regex_domain.hpp
  3. /// Contains the definition of the regex_domain type
  4. //
  5. // Copyright 2009 Eric Niebler. Distributed under the Boost
  6. // Software License, Version 1.0. (See accompanying file
  7. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. #ifndef BOOST_XPRESSIVE_DETAIL_CORE_REGEX_DOMAIN_HPP_EAN_12_12_2009
  9. #define BOOST_XPRESSIVE_DETAIL_CORE_REGEX_DOMAIN_HPP_EAN_12_12_2009
  10. #include <boost/xpressive/xpressive_fwd.hpp>
  11. #include <boost/proto/traits.hpp>
  12. #include <boost/proto/domain.hpp>
  13. #include <boost/proto/generate.hpp>
  14. namespace boost { namespace xpressive { namespace detail
  15. {
  16. struct regex_domain
  17. : proto::domain<proto::default_generator, proto::not_<proto::address_of<proto::_> > >
  18. {};
  19. }}}
  20. #endif