comparison Resources/Orthanc/Core/Compression/DeflateBaseCompressor.h @ 204:9d269d7cfeb8

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 28 Mar 2018 11:28:27 +0200
parents 03afbee0cc7b
children
comparison
equal deleted inserted replaced
203:431e991af593 204:9d269d7cfeb8
32 32
33 33
34 #pragma once 34 #pragma once
35 35
36 #include "IBufferCompressor.h" 36 #include "IBufferCompressor.h"
37
38 #if !defined(ORTHANC_ENABLE_ZLIB)
39 # error The macro ORTHANC_ENABLE_ZLIB must be defined
40 #endif
41
42 #if ORTHANC_ENABLE_ZLIB != 1
43 # error ZLIB support must be enabled to include this file
44 #endif
45
37 46
38 #include <stdint.h> 47 #include <stdint.h>
39 48
40 namespace Orthanc 49 namespace Orthanc
41 { 50 {