File indexing completed on 2025-01-18 09:36:56
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_GIL_EXTENSION_IO_JPEG_DETAIL_BASE_HPP
0009 #define BOOST_GIL_EXTENSION_IO_JPEG_DETAIL_BASE_HPP
0010
0011 #include <boost/gil/extension/io/jpeg/tags.hpp>
0012
0013 #include <csetjmp>
0014
0015 namespace boost { namespace gil {
0016
0017 #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
0018 #pragma warning(push)
0019 #pragma warning(disable:4324)
0020 #endif
0021
0022 class jpeg_io_base
0023 {
0024
0025 protected:
0026
0027 jpeg_error_mgr _jerr;
0028 jmp_buf _mark;
0029 };
0030
0031 #if BOOST_WORKAROUND(BOOST_MSVC, >= 1400)
0032 #pragma warning(pop)
0033 #endif
0034
0035 }
0036 }
0037
0038 #endif