100 lines
5.4 KiB
C++
100 lines
5.4 KiB
C++
/**
|
|
* 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) 2024-2025 Orthanc Team SRL, Belgium
|
|
* Copyright (C) 2021-2025 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/>.
|
|
**/
|
|
|
|
|
|
#if defined(_WIN32)
|
|
# if !defined(NOMINMAX)
|
|
# define NOMINMAX
|
|
# endif
|
|
// Make sure that "winsock2.h" is included before "winsock.h"
|
|
# include <winsock2.h>
|
|
#endif
|
|
|
|
// This must be the first inclusion, as it can modify __FILE__ to
|
|
// avoid the leaking of paths for reproducible builds
|
|
#include "../../../../OrthancFramework/Sources/DicomNetworking/Internals/DicomTls.cpp"
|
|
|
|
#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/DicomFormat/Window.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/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/OrthancFramework.cpp"
|
|
#include "../../../../OrthancFramework/Sources/RestApi/RestApiOutput.cpp"
|
|
#include "../../../../OrthancFramework/Sources/SerializationToolbox.cpp"
|
|
#include "../../../../OrthancFramework/Sources/SystemToolbox.cpp"
|
|
#include "../../../../OrthancFramework/Sources/TemporaryFile.cpp"
|
|
#include "../../../../OrthancFramework/Sources/Toolbox.cpp"
|
|
|
|
namespace Orthanc
|
|
{
|
|
void HttpClient::GlobalInitialize()
|
|
{
|
|
}
|
|
|
|
void HttpClient::GlobalFinalize()
|
|
{
|
|
}
|
|
}
|