comparison Core/Compression/ZipWriter.h @ 3945:0b3256c3ee14 transcoding

simplified IDicomTranscoder
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 19 May 2020 11:24:00 +0200
parents 94f4a18a79cc
children f9863630ec7f
comparison
equal deleted inserted replaced
3944:aae045f802f4 3945:0b3256c3ee14
99 return path_; 99 return path_;
100 } 100 }
101 101
102 void OpenFile(const char* path); 102 void OpenFile(const char* path);
103 103
104 void Write(const char* data, size_t length); 104 void Write(const void* data, size_t length);
105 105
106 void Write(const std::string& data); 106 void Write(const std::string& data);
107 }; 107 };
108 } 108 }