diff Core/DicomFormat/DicomMap.cpp @ 3650:e5811a9f8df0

removing DicomMap::LoadMainDicomTags()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 05 Feb 2020 11:52:10 +0100
parents 94f4a18a79cc
children 46cb00e4adbb
line wrap: on
line diff
--- a/Core/DicomFormat/DicomMap.cpp	Tue Feb 04 08:32:38 2020 +0100
+++ b/Core/DicomFormat/DicomMap.cpp	Wed Feb 05 11:52:10 2020 +0100
@@ -124,9 +124,9 @@
   };
 
 
-  void DicomMap::LoadMainDicomTags(const DicomTag*& tags,
-                                   size_t& size,
-                                   ResourceType level)
+  static void LoadMainDicomTags(const DicomTag*& tags,
+                                size_t& size,
+                                ResourceType level)
   {
     switch (level)
     {
@@ -1317,6 +1317,21 @@
   }
 
 
+  void DicomMap::DumpMainDicomTags(Json::Value& target,
+                                   ResourceType level) const
+  {
+    target = Json::objectValue;
+
+    
+  }
+  
+
+  void DicomMap::ParseMainDicomTags(Json::Value& target,
+                                    ResourceType level)
+  {
+  }
+
+
   void DicomMap::Print(FILE* fp) const
   {
     DicomArray a(*this);