comparison Resources/Orthanc/Core/Compression/ZipWriter.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
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