| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- Copyright 2010 Christian Henning, Andreas Pokorny, Lubomir Bourdev
- 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_GIL_EXTENSIONS_HPP_INCLUDED
- #define BOOST_GIL_EXTENSION_TOOLBOX_GIL_EXTENSIONS_HPP_INCLUDED
- ////////////////////////////////////////////////////////////////////////////////////////
- /// \file
- /// \brief Definitions of is_bit_aligned, is_homogeneous, and is_similar metafunctions and
- /// some other goodies.
- /// \author Christian Henning, Andreas Pokorny, Lubomir Bourdev \n
- ///
- /// \date 2008 \n
- ///
- ////////////////////////////////////////////////////////////////////////////////////////
- #include <boost/gil/gil_all.hpp>
- #include <boost/mpl/if.hpp>
- #include <boost/gil/extension/toolbox/dynamic_images.hpp>
- namespace boost { namespace gil {
- /// other goodies
- } // namespace gil
- } // namespace boost
- #endif // BOOST_GIL_EXTENSION_TOOLBOX_GIL_EXTENSIONS_HPP_INCLUDED
|