diff OrthancFramework/Sources/DicomFormat/DicomStreamReader.cpp @ 4277:c5ca798b158a

CheckOrthancFrameworkSymbols.py
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 03 Nov 2020 18:45:32 +0100
parents 7461f98c23a0
children 50b0c69b653a
line wrap: on
line diff
--- a/OrthancFramework/Sources/DicomFormat/DicomStreamReader.cpp	Tue Nov 03 17:00:58 2020 +0100
+++ b/OrthancFramework/Sources/DicomFormat/DicomStreamReader.cpp	Tue Nov 03 18:45:32 2020 +0100
@@ -540,4 +540,16 @@
     DicomTag untilTag(0xffff, 0xffff);
     Consume(visitor, untilTag);
   }
+
+
+  bool DicomStreamReader::IsDone() const
+  {
+    return (state_ == State_Done);
+  }
+
+  
+  uint64_t DicomStreamReader::GetProcessedBytes() const
+  {
+    return reader_.GetProcessedBytes();
+  }
 }