comparison Framework/Loaders/LoaderCache.cpp @ 1339:556b4bc19118 broker

The loaders have been adapter to the nobroker architecture and have been put back in the regular source files
author Benjamin Golinvaux <bgo@osimis.io>
date Fri, 03 Apr 2020 16:47:46 +0200
parents b1396be5aa27
children e92c516adcbd
comparison
equal deleted inserted replaced
1338:1b24f6b06408 1339:556b4bc19118
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. 18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 **/ 19 **/
20 20
21 #include "LoaderCache.h" 21 #include "LoaderCache.h"
22 22
23 #include "../../StoneException.h" 23 #include "../StoneException.h"
24 #include "OrthancSeriesVolumeProgressiveLoader.h" 24 #include "OrthancSeriesVolumeProgressiveLoader.h"
25 #include "OrthancMultiframeVolumeLoader.h" 25 #include "OrthancMultiframeVolumeLoader.h"
26 #include "DicomStructureSetLoader.h" 26 #include "DicomStructureSetLoader.h"
27 27
28 #include "../../Loaders/ILoadersContext.h" 28 #include "../Loaders/ILoadersContext.h"
29 29
30 30
31 #ifdef BGO_ENABLE_DICOMSTRUCTURESETLOADER2 31 #ifdef BGO_ENABLE_DICOMSTRUCTURESETLOADER2
32 #include "DicomStructureSetLoader2.h" 32 #include "DicomStructureSetLoader2.h"
33 #endif 33 #endif
34 //BGO_ENABLE_DICOMSTRUCTURESETLOADER2 34 //BGO_ENABLE_DICOMSTRUCTURESETLOADER2
35 35
36 36
37 #if ORTHANC_ENABLE_WASM == 1 37 #if ORTHANC_ENABLE_WASM == 1
38 # include <unistd.h> 38 # include <unistd.h>
39 # include "../../Oracle/WebAssemblyOracle.h" 39 # include "../Oracle/WebAssemblyOracle.h"
40 #else 40 #else
41 # include "../../Oracle/ThreadedOracle.h" 41 # include "../Oracle/ThreadedOracle.h"
42 #endif 42 #endif
43 43
44 #ifdef BGO_ENABLE_DICOMSTRUCTURESETLOADER2 44 #ifdef BGO_ENABLE_DICOMSTRUCTURESETLOADER2
45 #include "../../Toolbox/DicomStructureSet2.h" 45 #include "../../Toolbox/DicomStructureSet2.h"
46 #endif 46 #endif
47 //BGO_ENABLE_DICOMSTRUCTURESETLOADER2 47 //BGO_ENABLE_DICOMSTRUCTURESETLOADER2
48 48
49 #include "../../Volumes/DicomVolumeImage.h" 49 #include "../Volumes/DicomVolumeImage.h"
50 #include "../../Volumes/DicomVolumeImageMPRSlicer.h" 50 #include "../Volumes/DicomVolumeImageMPRSlicer.h"
51 51
52 #ifdef BGO_ENABLE_DICOMSTRUCTURESETLOADER2 52 #ifdef BGO_ENABLE_DICOMSTRUCTURESETLOADER2
53 #include "../../Volumes/DicomStructureSetSlicer2.h" 53 #include "../../Volumes/DicomStructureSetSlicer2.h"
54 #endif 54 #endif
55 //BGO_ENABLE_DICOMSTRUCTURESETLOADER2 55 //BGO_ENABLE_DICOMSTRUCTURESETLOADER2