Mercurial > hg > orthanc
diff OrthancFramework/Sources/Compression/DeflateBaseCompressor.h @ 4279:ab4d015af660
moving inline methods to source files for ABI compatibility
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 03 Nov 2020 20:48:01 +0100 |
parents | bf7b9edf6b81 |
children | d9473bd5ed43 |
line wrap: on
line diff
--- a/OrthancFramework/Sources/Compression/DeflateBaseCompressor.h Tue Nov 03 20:05:55 2020 +0100 +++ b/OrthancFramework/Sources/Compression/DeflateBaseCompressor.h Tue Nov 03 20:48:01 2020 +0100 @@ -48,27 +48,14 @@ size_t compressedSize); public: - DeflateBaseCompressor() : - compressionLevel_(6), - prefixWithUncompressedSize_(false) - { - } + DeflateBaseCompressor(); void SetCompressionLevel(uint8_t level); - void SetPrefixWithUncompressedSize(bool prefix) - { - prefixWithUncompressedSize_ = prefix; - } + void SetPrefixWithUncompressedSize(bool prefix); - bool HasPrefixWithUncompressedSize() const - { - return prefixWithUncompressedSize_; - } + bool HasPrefixWithUncompressedSize() const; - uint8_t GetCompressionLevel() const - { - return compressionLevel_; - } + uint8_t GetCompressionLevel() const; }; }