Mercurial > hg > orthanc
comparison OrthancServer/Plugins/Samples/DelayedDeletion/OrthancFrameworkDependencies.cpp @ 5263:ae3f29be5ca5
fix compatibility with visual studio precompiled headers
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 12 Apr 2023 17:38:44 +0200 |
parents | |
children | 48b8dae6dc77 |
comparison
equal
deleted
inserted
replaced
5262:bf304ee8dd80 | 5263:ae3f29be5ca5 |
---|---|
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 | |
31 #include "../../../../OrthancFramework/Sources/ChunkedBuffer.cpp" | |
32 #include "../../../../OrthancFramework/Sources/Compression/DeflateBaseCompressor.cpp" | |
33 #include "../../../../OrthancFramework/Sources/Compression/GzipCompressor.cpp" | |
34 #include "../../../../OrthancFramework/Sources/DicomFormat/DicomTag.cpp" | |
35 #include "../../../../OrthancFramework/Sources/Enumerations.cpp" | |
36 #include "../../../../OrthancFramework/Sources/FileStorage/FilesystemStorage.cpp" | |
37 #include "../../../../OrthancFramework/Sources/Logging.cpp" | |
38 #include "../../../../OrthancFramework/Sources/MultiThreading/SharedMessageQueue.cpp" | |
39 #include "../../../../OrthancFramework/Sources/OrthancException.cpp" | |
40 #include "../../../../OrthancFramework/Sources/SQLite/Connection.cpp" | |
41 #include "../../../../OrthancFramework/Sources/SQLite/FunctionContext.cpp" | |
42 #include "../../../../OrthancFramework/Sources/SQLite/Statement.cpp" | |
43 #include "../../../../OrthancFramework/Sources/SQLite/StatementId.cpp" | |
44 #include "../../../../OrthancFramework/Sources/SQLite/StatementReference.cpp" | |
45 #include "../../../../OrthancFramework/Sources/SQLite/Transaction.cpp" | |
46 #include "../../../../OrthancFramework/Sources/StringMemoryBuffer.cpp" | |
47 #include "../../../../OrthancFramework/Sources/SystemToolbox.cpp" | |
48 #include "../../../../OrthancFramework/Sources/Toolbox.cpp" |