diff Framework/Toolbox/ParsedDicomDataset.cpp @ 1504:d8af188ab545

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 30 Jun 2020 20:35:16 +0200
parents 0ca50d275b9a
children
line wrap: on
line diff
--- a/Framework/Toolbox/ParsedDicomDataset.cpp	Tue Jun 30 11:38:13 2020 +0200
+++ b/Framework/Toolbox/ParsedDicomDataset.cpp	Tue Jun 30 20:35:16 2020 +0200
@@ -26,13 +26,13 @@
 namespace OrthancStone
 {
   static DcmItem* LookupPath(Orthanc::ParsedDicomFile& dicom,
-                             const OrthancPlugins::DicomPath& path)
+                             const DicomPath& path)
   {
     DcmItem* node = dicom.GetDcmtkObject().getDataset();
       
     for (size_t i = 0; i < path.GetPrefixLength(); i++)
     {
-      const OrthancPlugins::DicomTag& tmp = path.GetPrefixTag(i);
+      const Orthanc::DicomTag& tmp = path.GetPrefixTag(i);
       DcmTagKey tag(tmp.GetGroup(), tmp.GetElement());
 
       DcmSequenceOfItems* sequence = NULL;
@@ -60,7 +60,7 @@
 
     
   bool ParsedDicomDataset::GetStringValue(std::string& result,
-                                          const OrthancPlugins::DicomPath& path) const
+                                          const DicomPath& path) const
   {
     DcmItem* node = LookupPath(dicom_, path);
       
@@ -82,7 +82,7 @@
 
 
   bool ParsedDicomDataset::GetSequenceSize(size_t& size,
-                                           const OrthancPlugins::DicomPath& path) const
+                                           const DicomPath& path) const
   {
     DcmItem* node = LookupPath(dicom_, path);