2011-11-12 11:24:42 +00:00
|
|
|
#ifndef SPROUT_VARIANT_APPLY_VISITOR_HPP
|
|
|
|
#define SPROUT_VARIANT_APPLY_VISITOR_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/utility/forward.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
template<typename Visitor, typename Visitable>
|
2012-12-18 22:40:29 +00:00
|
|
|
inline SPROUT_CONSTEXPR typename std::decay<Visitor>::type::result_type
|
2012-10-05 15:58:56 +00:00
|
|
|
apply_visitor(Visitor&& visitor, Visitable&& visitable) {
|
2011-11-12 11:24:42 +00:00
|
|
|
return sprout::forward<Visitable>(visitable).apply_visitor(sprout::forward<Visitor>(visitor));
|
|
|
|
}
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_VARIANT_APPLY_VISITOR_HPP
|