| 1234567891011121314151617181920212223242526272829303132 |
- /*
- Copyright 2012 Christian Henning
- Use, modification and distribution are subject to 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_EXTENSION_TOOLBOX_METAFUNCTIONS_HPP
- #define BOOST_GIL_EXTENSION_TOOLBOX_METAFUNCTIONS_HPP
- ////////////////////////////////////////////////////////////////////////////////////////
- /// \file metafunctions.hpp
- /// \brief Header for toolbox's metafunctions.
- /// \author Christian Henning \n
- ///
- /// \date 2012 \n
- ///
- ////////////////////////////////////////////////////////////////////////////////////////
- #include <boost/gil/extension/toolbox/metafunctions/channel_type.hpp>
- #include <boost/gil/extension/toolbox/metafunctions/channel_view.hpp>
- #include <boost/gil/extension/toolbox/metafunctions/get_num_bits.hpp>
- #include <boost/gil/extension/toolbox/metafunctions/get_pixel_type.hpp>
- #include <boost/gil/extension/toolbox/metafunctions/is_bit_aligned.hpp>
- #include <boost/gil/extension/toolbox/metafunctions/is_homogeneous.hpp>
- #include <boost/gil/extension/toolbox/metafunctions/is_similar.hpp>
- #include <boost/gil/extension/toolbox/metafunctions/pixel_bit_size.hpp>
- #endif // BOOST_GIL_EXTENSION_TOOLBOX_METAFUNCTIONS_HPP
|