Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:36:56

0001 //
0002 // Copyright 2010 Christian Henning
0003 //
0004 // Distributed under the Boost Software License, Version 1.0
0005 // See accompanying file LICENSE_1_0.txt or copy at
0006 // http://www.boost.org/LICENSE_1_0.txt
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) //structure was padded due to __declspec(align())
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 } // namespace gil
0036 } // namespace boost
0037 
0038 #endif