2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2014-01-08 07:48:12 +00:00
|
|
|
Copyright (c) 2011-2014 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-05-31 13:28:58 +00:00
|
|
|
#ifndef SPROUT_WEED_OPERATOR_MEM_PTR_HPP
|
|
|
|
#define SPROUT_WEED_OPERATOR_MEM_PTR_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/utility/forward.hpp>
|
|
|
|
#include <sprout/weed/expr/tag.hpp>
|
|
|
|
#include <sprout/weed/expr/make_expr.hpp>
|
|
|
|
#include <sprout/weed/traits/expr/expr_of.hpp>
|
|
|
|
#include <sprout/weed/traits/parser/is_parser.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace weed {
|
|
|
|
//
|
|
|
|
// operator->*
|
|
|
|
//
|
|
|
|
template<
|
|
|
|
typename Arg1,
|
|
|
|
typename Arg2,
|
|
|
|
typename = typename std::enable_if<
|
|
|
|
sprout::weed::traits::is_parser<
|
2013-03-26 17:02:16 +00:00
|
|
|
typename std::remove_reference<Arg1>::type
|
2012-05-31 13:28:58 +00:00
|
|
|
>::value
|
|
|
|
>::type
|
|
|
|
>
|
|
|
|
inline SPROUT_CONSTEXPR typename sprout::weed::traits::expr_of<
|
|
|
|
sprout::weed::tag::mem_ptr,
|
|
|
|
Arg1,
|
|
|
|
Arg2
|
|
|
|
>::type operator->*(Arg1&& arg1, Arg2&& arg2) {
|
|
|
|
return sprout::weed::make_expr<sprout::weed::tag::mem_ptr>(
|
|
|
|
sprout::forward<Arg1>(arg1),
|
|
|
|
sprout::forward<Arg2>(arg2)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} // namespace weed
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_WEED_OPERATOR_MEM_PTR_HPP
|