Mercurial > hg > orthanc
comparison OrthancServer/Plugins/Samples/MultitenantDicom/OrthancFrameworkDependencies.cpp @ 5273:7cb1b851f5c8
Added a sample plugin bringing multitenant DICOM support through labels
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 14 Apr 2023 11:49:24 +0200 |
parents | |
children | 8686476e9d12 |
comparison
equal
deleted
inserted
replaced
5272:a45e8b6115f6 | 5273:7cb1b851f5c8 |
---|---|
1 /** | |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium | |
6 * Copyright (C) 2021-2023 Sebastien Jodogne, ICTEAM UCLouvain, Belgium | |
7 * | |
8 * This program is free software: you can redistribute it and/or | |
9 * modify it under the terms of the GNU General Public License as | |
10 * published by the Free Software Foundation, either version 3 of the | |
11 * License, or (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 **/ | |
21 | |
22 | |
23 /** | |
24 * Remove the dependency upon ICU in plugins, as this greatly increase | |
25 * the size of the resulting binaries, since they must embed the ICU | |
26 * dictionary. | |
27 **/ | |
28 | |
29 #define ORTHANC_ENABLE_ICU 0 | |
30 #define ORTHANC_FRAMEWORK_INCLUDE_RESOURCES 0 | |
31 | |
32 #include <MultitenantDicomResources.h> | |
33 | |
34 #include "../../../../OrthancFramework/Sources/ChunkedBuffer.cpp" | |
35 #include "../../../../OrthancFramework/Sources/Compression/DeflateBaseCompressor.cpp" | |
36 #include "../../../../OrthancFramework/Sources/Compression/GzipCompressor.cpp" | |
37 #include "../../../../OrthancFramework/Sources/Compression/ZlibCompressor.cpp" | |
38 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomArray.cpp" | |
39 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomElement.cpp" | |
40 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomImageInformation.cpp" | |
41 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomInstanceHasher.cpp" | |
42 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomIntegerPixelAccessor.cpp" | |
43 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomMap.cpp" | |
44 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomPath.cpp" | |
45 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomTag.cpp" | |
46 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomValue.cpp" | |
47 #include "../../../../OrthancFramework/Sources/DicomNetworking/DicomAssociation.cpp" | |
48 #include "../../../../OrthancFramework/Sources/DicomNetworking/DicomAssociationParameters.cpp" | |
49 #include "../../../../OrthancFramework/Sources/DicomNetworking/DicomFindAnswers.cpp" | |
50 #include "../../../../OrthancFramework/Sources/DicomNetworking/DicomServer.cpp" | |
51 #include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/CommandDispatcher.cpp" | |
52 #include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/DicomTls.cpp" | |
53 #include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/FindScp.cpp" | |
54 #include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/GetScp.cpp" | |
55 #include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/MoveScp.cpp" | |
56 #include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/StoreScp.cpp" | |
57 #include "../../../../OrthancFramework/Sources/DicomNetworking/RemoteModalityParameters.cpp" | |
58 #include "../../../../OrthancFramework/Sources/DicomParsing/FromDcmtkBridge.cpp" | |
59 #include "../../../../OrthancFramework/Sources/DicomParsing/Internals/DicomFrameIndex.cpp" | |
60 #include "../../../../OrthancFramework/Sources/DicomParsing/Internals/DicomImageDecoder.cpp" | |
61 #include "../../../../OrthancFramework/Sources/DicomParsing/ParsedDicomFile.cpp" | |
62 #include "../../../../OrthancFramework/Sources/DicomParsing/ToDcmtkBridge.cpp" | |
63 #include "../../../../OrthancFramework/Sources/Enumerations.cpp" | |
64 #include "../../../../OrthancFramework/Sources/HttpServer/HttpOutput.cpp" | |
65 #include "../../../../OrthancFramework/Sources/Images/IImageWriter.cpp" | |
66 #include "../../../../OrthancFramework/Sources/Images/Image.cpp" | |
67 #include "../../../../OrthancFramework/Sources/Images/ImageAccessor.cpp" | |
68 #include "../../../../OrthancFramework/Sources/Images/ImageBuffer.cpp" | |
69 #include "../../../../OrthancFramework/Sources/Images/ImageProcessing.cpp" | |
70 #include "../../../../OrthancFramework/Sources/Images/JpegErrorManager.cpp" | |
71 #include "../../../../OrthancFramework/Sources/Images/JpegReader.cpp" | |
72 #include "../../../../OrthancFramework/Sources/Images/JpegWriter.cpp" | |
73 #include "../../../../OrthancFramework/Sources/Images/PamReader.cpp" | |
74 #include "../../../../OrthancFramework/Sources/Images/PamWriter.cpp" | |
75 #include "../../../../OrthancFramework/Sources/Images/PngReader.cpp" | |
76 #include "../../../../OrthancFramework/Sources/Images/PngWriter.cpp" | |
77 #include "../../../../OrthancFramework/Sources/Logging.cpp" | |
78 #include "../../../../OrthancFramework/Sources/MultiThreading/RunnableWorkersPool.cpp" | |
79 #include "../../../../OrthancFramework/Sources/MultiThreading/SharedMessageQueue.cpp" | |
80 #include "../../../../OrthancFramework/Sources/OrthancException.cpp" | |
81 #include "../../../../OrthancFramework/Sources/RestApi/RestApiOutput.cpp" | |
82 #include "../../../../OrthancFramework/Sources/SerializationToolbox.cpp" | |
83 #include "../../../../OrthancFramework/Sources/SystemToolbox.cpp" | |
84 #include "../../../../OrthancFramework/Sources/Toolbox.cpp" | |
85 #include "../../../../OrthancFramework/Sources/TemporaryFile.cpp" |