comparison Core/Compression/ZipWriter.h @ 2508:91ee08d986f9

possibility to disable zlib support in the Orthanc framework
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 28 Mar 2018 11:24:17 +0200
parents 878b59270859
children 4e43e67f8ecf
comparison
equal deleted inserted replaced
2507:99116ed6f38c 2508:91ee08d986f9
30 * along with this program. If not, see <http://www.gnu.org/licenses/>. 30 * along with this program. If not, see <http://www.gnu.org/licenses/>.
31 **/ 31 **/
32 32
33 33
34 #pragma once 34 #pragma once
35
36 #if !defined(ORTHANC_ENABLE_ZLIB)
37 # error The macro ORTHANC_ENABLE_ZLIB must be defined
38 #endif
39
40 #if ORTHANC_ENABLE_ZLIB != 1
41 # error ZLIB support must be enabled to include this file
42 #endif
43
35 44
36 #include <stdint.h> 45 #include <stdint.h>
37 #include <string> 46 #include <string>
38 #include <boost/shared_ptr.hpp> 47 #include <boost/shared_ptr.hpp>
39 48