write.hpp 1021 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. Copyright 2008 Christian Henning
  3. Use, modification and distribution are subject to the Boost Software License,
  4. Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt).
  6. */
  7. /*************************************************************************************************/
  8. #ifndef BOOST_GIL_EXTENSION_IO_BMP_WRITE_HPP
  9. #define BOOST_GIL_EXTENSION_IO_BMP_WRITE_HPP
  10. ////////////////////////////////////////////////////////////////////////////////////////
  11. /// \file
  12. /// \brief
  13. /// \author Christian Henning \n
  14. ///
  15. /// \date 2008 \n
  16. ///
  17. ////////////////////////////////////////////////////////////////////////////////////////
  18. #include <boost/gil/extension/io/bmp/tags.hpp>
  19. #include <boost/gil/extension/io/bmp/detail/supported_types.hpp>
  20. #include <boost/gil/extension/io/bmp/detail/write.hpp>
  21. #include <boost/gil/io/make_writer.hpp>
  22. #include <boost/gil/io/make_dynamic_image_writer.hpp>
  23. #include <boost/gil/io/write_view.hpp>
  24. #endif