Mercurial > hg > orthanc
comparison OrthancFramework/Sources/DicomFormat/DicomStreamReader.h @ 4277:c5ca798b158a
CheckOrthancFrameworkSymbols.py
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 03 Nov 2020 18:45:32 +0100 |
parents | 38d446c9ee1d |
children | d9473bd5ed43 |
comparison
equal
deleted
inserted
replaced
4276:68e24935f258 | 4277:c5ca798b158a |
---|---|
116 void Consume(IVisitor& visitor, | 116 void Consume(IVisitor& visitor, |
117 const DicomTag& untilTag); | 117 const DicomTag& untilTag); |
118 | 118 |
119 void Consume(IVisitor& visitor); | 119 void Consume(IVisitor& visitor); |
120 | 120 |
121 bool IsDone() const | 121 bool IsDone() const; |
122 { | |
123 return (state_ == State_Done); | |
124 } | |
125 | 122 |
126 uint64_t GetProcessedBytes() const | 123 uint64_t GetProcessedBytes() const; |
127 { | |
128 return reader_.GetProcessedBytes(); | |
129 } | |
130 }; | 124 }; |
131 } | 125 } |