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

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 30 Jun 2020 20:35:16 +0200
parents 30deba7bc8e2
children
line wrap: on
line diff
--- a/Framework/Toolbox/ParsedDicomDataset.h	Tue Jun 30 11:38:13 2020 +0200
+++ b/Framework/Toolbox/ParsedDicomDataset.h	Tue Jun 30 20:35:16 2020 +0200
@@ -21,12 +21,13 @@
 
 #pragma once
 
+#include "OrthancDatasets/IDicomDataset.h"
+
 #include <DicomParsing/ParsedDicomFile.h>
-#include <IDicomDataset.h>
 
 namespace OrthancStone
 {
-  class ParsedDicomDataset : public OrthancPlugins::IDicomDataset
+  class ParsedDicomDataset : public IDicomDataset
   {
   private:
     Orthanc::ParsedDicomFile&  dicom_;
@@ -38,9 +39,9 @@
     }
 
     virtual bool GetStringValue(std::string& result,
-                                const OrthancPlugins::DicomPath& path) const ORTHANC_OVERRIDE;
+                                const DicomPath& path) const ORTHANC_OVERRIDE;
 
     virtual bool GetSequenceSize(size_t& size,
-                                 const OrthancPlugins::DicomPath& path) const ORTHANC_OVERRIDE;
+                                 const DicomPath& path) const ORTHANC_OVERRIDE;
   };
 }