comparison OrthancFramework/Sources/Images/NumpyWriter.cpp @ 4859:6f780611fc03

fix orthanc framework abi
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 24 Dec 2021 15:34:33 +0100
parents f3f93695d6df
children 43e613a7756b
comparison
equal deleted inserted replaced
4858:8b51d65584f0 4859:6f780611fc03
231 { 231 {
232 throw OrthancException(ErrorCode_InternalError, "Orthanc was compiled without support for zlib"); 232 throw OrthancException(ErrorCode_InternalError, "Orthanc was compiled without support for zlib");
233 } 233 }
234 #endif 234 #endif
235 } 235 }
236
237
238 bool NumpyWriter::IsCompressed() const
239 {
240 return compressed_;
241 }
236 } 242 }