diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/OrthancServer/Plugins/Samples/MultitenantDicom/OrthancFrameworkDependencies.cpp	Fri Apr 14 11:49:24 2023 +0200
@@ -0,0 +1,85 @@
+/**
+ * Orthanc - A Lightweight, RESTful DICOM Store
+ * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
+ * Department, University Hospital of Liege, Belgium
+ * Copyright (C) 2017-2023 Osimis S.A., Belgium
+ * Copyright (C) 2021-2023 Sebastien Jodogne, ICTEAM UCLouvain, Belgium
+ *
+ * This program is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ **/
+
+
+/**
+ * Remove the dependency upon ICU in plugins, as this greatly increase
+ * the size of the resulting binaries, since they must embed the ICU
+ * dictionary.
+ **/
+
+#define ORTHANC_ENABLE_ICU 0
+#define ORTHANC_FRAMEWORK_INCLUDE_RESOURCES 0
+
+#include <MultitenantDicomResources.h>
+
+#include "../../../../OrthancFramework/Sources/ChunkedBuffer.cpp"
+#include "../../../../OrthancFramework/Sources/Compression/DeflateBaseCompressor.cpp"
+#include "../../../../OrthancFramework/Sources/Compression/GzipCompressor.cpp"
+#include "../../../../OrthancFramework/Sources/Compression/ZlibCompressor.cpp"
+#include "../../../../OrthancFramework/Sources/DicomFormat/DicomArray.cpp"
+#include "../../../../OrthancFramework/Sources/DicomFormat/DicomElement.cpp"
+#include "../../../../OrthancFramework/Sources/DicomFormat/DicomImageInformation.cpp"
+#include "../../../../OrthancFramework/Sources/DicomFormat/DicomInstanceHasher.cpp"
+#include "../../../../OrthancFramework/Sources/DicomFormat/DicomIntegerPixelAccessor.cpp"
+#include "../../../../OrthancFramework/Sources/DicomFormat/DicomMap.cpp"
+#include "../../../../OrthancFramework/Sources/DicomFormat/DicomPath.cpp"
+#include "../../../../OrthancFramework/Sources/DicomFormat/DicomTag.cpp"
+#include "../../../../OrthancFramework/Sources/DicomFormat/DicomValue.cpp"
+#include "../../../../OrthancFramework/Sources/DicomNetworking/DicomAssociation.cpp"
+#include "../../../../OrthancFramework/Sources/DicomNetworking/DicomAssociationParameters.cpp"
+#include "../../../../OrthancFramework/Sources/DicomNetworking/DicomFindAnswers.cpp"
+#include "../../../../OrthancFramework/Sources/DicomNetworking/DicomServer.cpp"
+#include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/CommandDispatcher.cpp"
+#include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/DicomTls.cpp"
+#include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/FindScp.cpp"
+#include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/GetScp.cpp"
+#include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/MoveScp.cpp"
+#include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/StoreScp.cpp"
+#include "../../../../OrthancFramework/Sources/DicomNetworking/RemoteModalityParameters.cpp"
+#include "../../../../OrthancFramework/Sources/DicomParsing/FromDcmtkBridge.cpp"
+#include "../../../../OrthancFramework/Sources/DicomParsing/Internals/DicomFrameIndex.cpp"
+#include "../../../../OrthancFramework/Sources/DicomParsing/Internals/DicomImageDecoder.cpp"
+#include "../../../../OrthancFramework/Sources/DicomParsing/ParsedDicomFile.cpp"
+#include "../../../../OrthancFramework/Sources/DicomParsing/ToDcmtkBridge.cpp"
+#include "../../../../OrthancFramework/Sources/Enumerations.cpp"
+#include "../../../../OrthancFramework/Sources/HttpServer/HttpOutput.cpp"
+#include "../../../../OrthancFramework/Sources/Images/IImageWriter.cpp"
+#include "../../../../OrthancFramework/Sources/Images/Image.cpp"
+#include "../../../../OrthancFramework/Sources/Images/ImageAccessor.cpp"
+#include "../../../../OrthancFramework/Sources/Images/ImageBuffer.cpp"
+#include "../../../../OrthancFramework/Sources/Images/ImageProcessing.cpp"
+#include "../../../../OrthancFramework/Sources/Images/JpegErrorManager.cpp"
+#include "../../../../OrthancFramework/Sources/Images/JpegReader.cpp"
+#include "../../../../OrthancFramework/Sources/Images/JpegWriter.cpp"
+#include "../../../../OrthancFramework/Sources/Images/PamReader.cpp"
+#include "../../../../OrthancFramework/Sources/Images/PamWriter.cpp"
+#include "../../../../OrthancFramework/Sources/Images/PngReader.cpp"
+#include "../../../../OrthancFramework/Sources/Images/PngWriter.cpp"
+#include "../../../../OrthancFramework/Sources/Logging.cpp"
+#include "../../../../OrthancFramework/Sources/MultiThreading/RunnableWorkersPool.cpp"
+#include "../../../../OrthancFramework/Sources/MultiThreading/SharedMessageQueue.cpp"
+#include "../../../../OrthancFramework/Sources/OrthancException.cpp"
+#include "../../../../OrthancFramework/Sources/RestApi/RestApiOutput.cpp"
+#include "../../../../OrthancFramework/Sources/SerializationToolbox.cpp"
+#include "../../../../OrthancFramework/Sources/SystemToolbox.cpp"
+#include "../../../../OrthancFramework/Sources/Toolbox.cpp"
+#include "../../../../OrthancFramework/Sources/TemporaryFile.cpp"