| 1 | // Copyright (c) 2022 Denis Mikhailov |
| 2 | // |
| 3 | // Distributed under the Boost Software License, Version 1.0. (See accompanying |
| 4 | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 5 | |
| 6 | #ifndef BOOST_PFR_DETAIL_TRAITS_FWD_HPP |
| 7 | #define BOOST_PFR_DETAIL_TRAITS_FWD_HPP |
| 8 | #pragma once |
| 9 | |
| 10 | #include <boost/pfr/detail/config.hpp> |
| 11 | |
| 12 | namespace boost { namespace pfr { |
| 13 | |
| 14 | template<class T, class WhatFor> |
| 15 | struct is_reflectable; |
| 16 | |
| 17 | }} // namespace boost::pfr |
| 18 | |
| 19 | #endif // BOOST_PFR_DETAIL_TRAITS_FWD_HPP |
| 20 | |
| 21 | |
| 22 | |