comparison OrthancFramework/Sources/DicomFormat/StreamBlockReader.h @ 4296:3b70a2e6a06c

moving inline methods to source files for ABI compatibility
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 05 Nov 2020 15:52:28 +0100
parents 81f2d1484886
children d9473bd5ed43
comparison
equal deleted inserted replaced
4295:90f91b78d708 4296:3b70a2e6a06c
59 * call to "Schedule()". Returns "false" iff not enough bytes are 59 * call to "Schedule()". Returns "false" iff not enough bytes are
60 * available from the stream yet: In this case, try again later. 60 * available from the stream yet: In this case, try again later.
61 **/ 61 **/
62 bool Read(std::string& block); 62 bool Read(std::string& block);
63 63
64 uint64_t GetProcessedBytes() const 64 uint64_t GetProcessedBytes() const;
65 {
66 return processedBytes_;
67 }
68 }; 65 };
69 } 66 }