comparison Core/Compression/HierarchicalZipWriter.h @ 759:8cfc6119a5bd dicom-rt

integration mainline -> dicom-rt
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 16 Apr 2014 16:04:55 +0200
parents 2d0a347e8cfc
children 82567bac5e25
comparison
equal deleted inserted replaced
605:b82292ba2083 759:8cfc6119a5bd
1 /** 1 /**
2 * Orthanc - A Lightweight, RESTful DICOM Store 2 * Orthanc - A Lightweight, RESTful DICOM Store
3 * Copyright (C) 2012-2013 Medical Physics Department, CHU of Liege, 3 * Copyright (C) 2012-2014 Medical Physics Department, CHU of Liege,
4 * Belgium 4 * Belgium
5 * 5 *
6 * This program is free software: you can redistribute it and/or 6 * This program is free software: you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as 7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation, either version 3 of the 8 * published by the Free Software Foundation, either version 3 of the
92 public: 92 public:
93 HierarchicalZipWriter(const char* path); 93 HierarchicalZipWriter(const char* path);
94 94
95 ~HierarchicalZipWriter(); 95 ~HierarchicalZipWriter();
96 96
97 void SetZip64(bool isZip64)
98 {
99 writer_.SetZip64(isZip64);
100 }
101
102 bool IsZip64() const
103 {
104 return writer_.IsZip64();
105 }
106
97 void SetCompressionLevel(uint8_t level) 107 void SetCompressionLevel(uint8_t level)
98 { 108 {
99 writer_.SetCompressionLevel(level); 109 writer_.SetCompressionLevel(level);
100 } 110 }
101 111