diff Framework/Loaders/LoaderCache.h @ 1343:e92c516adcbd broker

Dead code removal
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 06 Apr 2020 08:43:03 +0200
parents 556b4bc19118
children f4a06ad1580b
line wrap: on
line diff
--- a/Framework/Loaders/LoaderCache.h	Mon Apr 06 08:42:40 2020 +0200
+++ b/Framework/Loaders/LoaderCache.h	Mon Apr 06 08:43:03 2020 +0200
@@ -57,15 +57,6 @@
         std::string instanceUuid,
         const std::vector<std::string>& initiallyVisibleStructures);
 
-#ifdef BGO_ENABLE_DICOMSTRUCTURESETLOADER2
-    boost::shared_ptr<DicomStructureSetLoader2>
-      GetDicomStructureSetLoader2(std::string instanceUuid);
-
-    boost::shared_ptr<DicomStructureSetSlicer2>
-      GetDicomStructureSetSlicer2(std::string instanceUuid);
-#endif 
-    //BGO_ENABLE_DICOMSTRUCTURESETLOADER2
-
     void ClearCache();
 
   private:
@@ -82,15 +73,6 @@
       dicomVolumeImageMPRSlicers_;
     std::map<std::string, boost::shared_ptr<DicomStructureSetLoader> >
       dicomStructureSetLoaders_;
-#ifdef BGO_ENABLE_DICOMSTRUCTURESETLOADER2
-    std::map<std::string, boost::shared_ptr<DicomStructureSetLoader2> >
-      dicomStructureSetLoaders2_;
-    std::map<std::string, boost::shared_ptr<DicomStructureSet2> >
-      dicomStructureSets2_;
-    std::map<std::string, boost::shared_ptr<DicomStructureSetSlicer2> >
-      dicomStructureSetSlicers2_;
-#endif 
-    //BGO_ENABLE_DICOMSTRUCTURESETLOADER2
   };
 }