19 lines
327 B
C++
19 lines
327 B
C++
|
#ifndef RFL_INTERNAL_PTR_TUPLE_T_HPP_
|
||
|
#define RFL_INTERNAL_PTR_TUPLE_T_HPP_
|
||
|
|
||
|
#include <functional>
|
||
|
#include <type_traits>
|
||
|
|
||
|
#include "to_ptr_tuple.hpp"
|
||
|
|
||
|
namespace rfl {
|
||
|
namespace internal {
|
||
|
|
||
|
template <class T>
|
||
|
using ptr_tuple_t = decltype(to_ptr_tuple(std::declval<T&>()));
|
||
|
|
||
|
} // namespace internal
|
||
|
} // namespace rfl
|
||
|
|
||
|
#endif
|