// // Copyright 2012 Christian Henning // // 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 // #ifndef BOOST_GIL_IO_GET_WRITER_HPP #define BOOST_GIL_IO_GET_WRITER_HPP #include #include #include namespace boost { namespace gil { /// \brief Helper metafunction to generate writer type. template struct get_writer {}; template struct get_writer < String, FormatTag, typename std::enable_if < mp11::mp_and < detail::is_supported_path_spec, is_format_tag >::value >::type > { using device_t = typename get_write_device::type; using type = writer; }; template struct get_writer < Device, FormatTag, typename std::enable_if < mp11::mp_and < detail::is_adaptable_output_device, is_format_tag >::value >::type > { using device_t = typename get_write_device::type; using type = writer; }; /// \brief Helper metafunction to generate dynamic image writer type. template struct get_dynamic_image_writer {}; template struct get_dynamic_image_writer < String, FormatTag, typename std::enable_if < mp11::mp_and < detail::is_supported_path_spec, is_format_tag >::value >::type > { using device_t = typename get_write_device::type; using type = dynamic_image_writer; }; template struct get_dynamic_image_writer < Device, FormatTag, typename std::enable_if < mp11::mp_and < detail::is_write_device, is_format_tag >::value >::type > { using device_t = typename get_write_device::type; using type = dynamic_image_writer; }; }} // namespace boost::gil #endif