21 lines
881 B
C++
21 lines
881 B
C++
|
//
|
||
|
// 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_EXTENSION_TOOLBOX_METAFUNCTIONS_HPP
|
||
|
#define BOOST_GIL_EXTENSION_TOOLBOX_METAFUNCTIONS_HPP
|
||
|
|
||
|
#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
|