annotate OrthancServer/Plugins/Samples/MultitenantDicom/OrthancFrameworkDependencies.cpp @ 5640:f7adfb22e20e

updated copyright, as Orthanc Team now replaces Osimis
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 30 May 2024 21:19:57 +0200
parents f8b9eaa5effa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
5273
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
1 /**
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
2 * Orthanc - A Lightweight, RESTful DICOM Store
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
4 * Department, University Hospital of Liege, Belgium
5640
f7adfb22e20e updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5545
diff changeset
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium
f7adfb22e20e updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5545
diff changeset
6 * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium
5485
48b8dae6dc77 upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5276
diff changeset
7 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
5273
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
8 *
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
9 * This program is free software: you can redistribute it and/or
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
10 * modify it under the terms of the GNU General Public License as
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
11 * published by the Free Software Foundation, either version 3 of the
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
12 * License, or (at your option) any later version.
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
13 *
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
14 * This program is distributed in the hope that it will be useful, but
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
17 * General Public License for more details.
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
18 *
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
19 * You should have received a copy of the GNU General Public License
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
21 **/
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
22
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
23
5276
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5275
diff changeset
24 #if defined(_WIN32)
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5275
diff changeset
25 # if !defined(NOMINMAX)
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5275
diff changeset
26 # define NOMINMAX
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5275
diff changeset
27 # endif
5275
8686476e9d12 fix inclusion of winsock.h
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5273
diff changeset
28 // Make sure that "winsock2.h" is included before "winsock.h"
8686476e9d12 fix inclusion of winsock.h
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5273
diff changeset
29 # include <winsock2.h>
8686476e9d12 fix inclusion of winsock.h
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5273
diff changeset
30 #endif
8686476e9d12 fix inclusion of winsock.h
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5273
diff changeset
31
5273
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
32 #include "../../../../OrthancFramework/Sources/ChunkedBuffer.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
33 #include "../../../../OrthancFramework/Sources/Compression/DeflateBaseCompressor.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
34 #include "../../../../OrthancFramework/Sources/Compression/GzipCompressor.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
35 #include "../../../../OrthancFramework/Sources/Compression/ZlibCompressor.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
36 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomArray.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
37 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomElement.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
38 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomImageInformation.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
39 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomInstanceHasher.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
40 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomIntegerPixelAccessor.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
41 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomMap.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
42 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomPath.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
43 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomTag.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
44 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomValue.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
45 #include "../../../../OrthancFramework/Sources/DicomNetworking/DicomAssociation.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
46 #include "../../../../OrthancFramework/Sources/DicomNetworking/DicomAssociationParameters.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
47 #include "../../../../OrthancFramework/Sources/DicomNetworking/DicomFindAnswers.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
48 #include "../../../../OrthancFramework/Sources/DicomNetworking/DicomServer.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
49 #include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/CommandDispatcher.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
50 #include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/DicomTls.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
51 #include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/FindScp.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
52 #include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/GetScp.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
53 #include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/MoveScp.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
54 #include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/StoreScp.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
55 #include "../../../../OrthancFramework/Sources/DicomNetworking/RemoteModalityParameters.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
56 #include "../../../../OrthancFramework/Sources/DicomParsing/FromDcmtkBridge.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
57 #include "../../../../OrthancFramework/Sources/DicomParsing/Internals/DicomFrameIndex.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
58 #include "../../../../OrthancFramework/Sources/DicomParsing/Internals/DicomImageDecoder.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
59 #include "../../../../OrthancFramework/Sources/DicomParsing/ParsedDicomFile.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
60 #include "../../../../OrthancFramework/Sources/DicomParsing/ToDcmtkBridge.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
61 #include "../../../../OrthancFramework/Sources/Enumerations.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
62 #include "../../../../OrthancFramework/Sources/HttpServer/HttpOutput.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
63 #include "../../../../OrthancFramework/Sources/Images/IImageWriter.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
64 #include "../../../../OrthancFramework/Sources/Images/Image.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
65 #include "../../../../OrthancFramework/Sources/Images/ImageAccessor.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
66 #include "../../../../OrthancFramework/Sources/Images/ImageBuffer.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
67 #include "../../../../OrthancFramework/Sources/Images/ImageProcessing.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
68 #include "../../../../OrthancFramework/Sources/Images/JpegErrorManager.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
69 #include "../../../../OrthancFramework/Sources/Images/JpegReader.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
70 #include "../../../../OrthancFramework/Sources/Images/JpegWriter.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
71 #include "../../../../OrthancFramework/Sources/Images/PamReader.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
72 #include "../../../../OrthancFramework/Sources/Images/PamWriter.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
73 #include "../../../../OrthancFramework/Sources/Images/PngReader.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
74 #include "../../../../OrthancFramework/Sources/Images/PngWriter.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
75 #include "../../../../OrthancFramework/Sources/Logging.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
76 #include "../../../../OrthancFramework/Sources/MultiThreading/RunnableWorkersPool.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
77 #include "../../../../OrthancFramework/Sources/MultiThreading/SharedMessageQueue.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
78 #include "../../../../OrthancFramework/Sources/OrthancException.cpp"
5544
dce22a789a2b Multitenant DICOM plugin: added support for locales
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
79 #include "../../../../OrthancFramework/Sources/OrthancFramework.cpp"
5273
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
80 #include "../../../../OrthancFramework/Sources/RestApi/RestApiOutput.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
81 #include "../../../../OrthancFramework/Sources/SerializationToolbox.cpp"
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
82 #include "../../../../OrthancFramework/Sources/SystemToolbox.cpp"
5544
dce22a789a2b Multitenant DICOM plugin: added support for locales
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
83 #include "../../../../OrthancFramework/Sources/TemporaryFile.cpp"
5273
7cb1b851f5c8 Added a sample plugin bringing multitenant DICOM support through labels
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
84 #include "../../../../OrthancFramework/Sources/Toolbox.cpp"
5544
dce22a789a2b Multitenant DICOM plugin: added support for locales
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
85
dce22a789a2b Multitenant DICOM plugin: added support for locales
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
86 namespace Orthanc
dce22a789a2b Multitenant DICOM plugin: added support for locales
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
87 {
dce22a789a2b Multitenant DICOM plugin: added support for locales
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
88 void HttpClient::GlobalInitialize()
dce22a789a2b Multitenant DICOM plugin: added support for locales
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
89 {
dce22a789a2b Multitenant DICOM plugin: added support for locales
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
90 }
dce22a789a2b Multitenant DICOM plugin: added support for locales
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
91
dce22a789a2b Multitenant DICOM plugin: added support for locales
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
92 void HttpClient::GlobalFinalize()
dce22a789a2b Multitenant DICOM plugin: added support for locales
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
93 {
dce22a789a2b Multitenant DICOM plugin: added support for locales
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
94 }
dce22a789a2b Multitenant DICOM plugin: added support for locales
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 5485
diff changeset
95 }