diff OrthancStone/Sources/Toolbox/OrthancDatasets/SimplifiedOrthancDataset.h @ 1834:126522623e20

replaced OrthancStone::DicomPath by new class Orthanc::DicomPath from orthanc framework
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 10 Jun 2021 12:07:04 +0200
parents 9ac2a65d4172
children 3889ae96d2e9
line wrap: on
line diff
--- a/OrthancStone/Sources/Toolbox/OrthancDatasets/SimplifiedOrthancDataset.h	Mon Jun 07 18:47:10 2021 +0200
+++ b/OrthancStone/Sources/Toolbox/OrthancDatasets/SimplifiedOrthancDataset.h	Thu Jun 10 12:07:04 2021 +0200
@@ -42,7 +42,7 @@
   private:
     Json::Value   root_;
 
-    const Json::Value* LookupPath(const DicomPath& path) const;
+    const Json::Value* LookupPath(const Orthanc::DicomPath& path) const;
 
     void CheckRoot() const;
 
@@ -53,9 +53,9 @@
     explicit SimplifiedOrthancDataset(const std::string& content);
 
     virtual bool GetStringValue(std::string& result,
-                                const DicomPath& path) const ORTHANC_OVERRIDE;
+                                const Orthanc::DicomPath& path) const ORTHANC_OVERRIDE;
 
     virtual bool GetSequenceSize(size_t& size,
-                                 const DicomPath& path) const ORTHANC_OVERRIDE;
+                                 const Orthanc::DicomPath& path) const ORTHANC_OVERRIDE;
   };
 }