comparison Resources/Orthanc/Core/PrecompiledHeaders.h @ 116:a18bfe1fdd62

sync
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 04 Jan 2018 10:49:34 +0100
parents ff0ef01c332c
children bf430fee14d1
comparison
equal deleted inserted replaced
115:a51dee6a1515 116:a18bfe1fdd62
1 /** 1 /**
2 * Orthanc - A Lightweight, RESTful DICOM Store 2 * Orthanc - A Lightweight, RESTful DICOM Store
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics 3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
4 * Department, University Hospital of Liege, Belgium 4 * Department, University Hospital of Liege, Belgium
5 * Copyright (C) 2017 Osimis, Belgium 5 * Copyright (C) 2017-2018 Osimis S.A., Belgium
6 * 6 *
7 * This program is free software: you can redistribute it and/or 7 * This program is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as 8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation, either version 3 of the 9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version. 10 * License, or (at your option) any later version.
48 #include <boost/thread/shared_mutex.hpp> 48 #include <boost/thread/shared_mutex.hpp>
49 49
50 #include <json/value.h> 50 #include <json/value.h>
51 51
52 #if ORTHANC_ENABLE_PUGIXML == 1 52 #if ORTHANC_ENABLE_PUGIXML == 1
53 #include <pugixml.hpp> 53 # include <pugixml.hpp>
54 #endif 54 #endif
55 55
56 #include "Enumerations.h" 56 #include "Enumerations.h"
57 #include "Logging.h" 57 #include "Logging.h"
58 #include "OrthancException.h" 58 #include "OrthancException.h"
59 #include "Toolbox.h" 59 #include "Toolbox.h"
60 60
61 #if ORTHANC_ENABLE_DCMTK == 1
62 # include "DicomParsing/ParsedDicomFile.h"
63
64 // Headers from DCMTK used in Orthanc headers
65 # include <dcmtk/dcmdata/dcdatset.h>
66 # include <dcmtk/dcmdata/dcfilefo.h>
67 # include <dcmtk/dcmdata/dcmetinf.h>
68 # include <dcmtk/dcmdata/dcpixseq.h>
61 #endif 69 #endif
70
71 #if ORTHANC_ENABLE_DCMTK_NETWORKING == 1
72 # include "DicomNetworking/DicomServer.h"
73
74 // Headers from DCMTK used in Orthanc headers
75 # include <dcmtk/dcmnet/dimse.h>
76 #endif
77
78 #endif