traits_fwd.hpp 703 B

1234567891011121314151617181920212223242526272829
  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. #ifndef BOOST_PFR_DETAIL_TRAITS_FWD_HPP
  6. #define BOOST_PFR_DETAIL_TRAITS_FWD_HPP
  7. #pragma once
  8. #include <boost/pfr/detail/config.hpp>
  9. #if !defined(BOOST_USE_MODULES) || defined(BOOST_PFR_INTERFACE_UNIT)
  10. namespace boost { namespace pfr {
  11. BOOST_PFR_BEGIN_MODULE_EXPORT
  12. template<class T, class WhatFor>
  13. struct is_reflectable;
  14. BOOST_PFR_END_MODULE_EXPORT
  15. }} // namespace boost::pfr
  16. #endif // #if !defined(BOOST_USE_MODULES) || defined(BOOST_PFR_INTERFACE_UNIT)
  17. #endif // BOOST_PFR_DETAIL_TRAITS_FWD_HPP