// // cpp03/can_prefer_free_require.cpp // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2021 Christopher M. Kohlhoff (chris at kohlhoff dot com) // // 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) // #include #include template struct prop { static const bool is_preferable = true; }; template struct object { template friend object require(const object&, prop) { return object(); } }; namespace boost { namespace asio { template struct is_applicable_property, prop > { static const bool value = true; }; namespace traits { template struct require_free, prop > { static const bool is_valid = true; static const bool is_noexcept = true; typedef object result_type; }; } // namespace traits } // namespace asio } // namespace boost int main() { assert((boost::asio::can_prefer, prop<2> >::value)); assert((boost::asio::can_prefer, prop<2>, prop<3> >::value)); assert((boost::asio::can_prefer, prop<2>, prop<3>, prop<4> >::value)); assert((boost::asio::can_prefer, prop<2> >::value)); assert((boost::asio::can_prefer, prop<2>, prop<3> >::value)); assert((boost::asio::can_prefer, prop<2>, prop<3>, prop<4> >::value)); }