Sprout/sprout/weed/attr_cnv/results/mem_ptr.hpp

31 lines
987 B
C++
Raw Normal View History

2013-08-08 09:54:33 +00:00
/*=============================================================================
2015-01-10 10:13:57 +00:00
Copyright (c) 2011-2015 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)
=============================================================================*/
2014-05-29 16:22:00 +00:00
#ifndef SPROUT_WEED_ATTR_CNV_RESULTS_MEM_PTR_HPP
#define SPROUT_WEED_ATTR_CNV_RESULTS_MEM_PTR_HPP
#include <sprout/config.hpp>
2015-04-04 16:32:49 +00:00
#include <sprout/type_traits/result_of.hpp>
namespace sprout {
namespace weed {
namespace attr_cnv {
namespace results {
//
// mem_ptr
//
template<typename T, typename U, typename = void>
struct mem_ptr
: public sprout::result_of<U(T)>
{};
} // namespace results
} // namespace attr_cnv
} // namespace weed
} // namespace sprout
2014-05-29 16:22:00 +00:00
#endif // #ifndef SPROUT_WEED_ATTR_CNV_RESULTS_MEM_PTR_HPP