comparison Framework/Plugins/ISqlLookupFormatter.cpp @ 548:25005693297b

removed unnecessary macro ORTHANC_BUILDING_SERVER_LIBRARY
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 09 Sep 2024 13:22:44 +0200
parents b8e6e7a19424
children 9ed9a91bde33 1a23f1ce3b98
comparison
equal deleted inserted replaced
547:b8e6e7a19424 548:25005693297b
26 * folder from the Orthanc main project: 26 * folder from the Orthanc main project:
27 * https://orthanc.uclouvain.be/hg/orthanc/file/default/OrthancServer/Sources/Search/ 27 * https://orthanc.uclouvain.be/hg/orthanc/file/default/OrthancServer/Sources/Search/
28 **/ 28 **/
29 29
30 30
31 #if !defined(ORTHANC_BUILDING_SERVER_LIBRARY)
32 # error Macro ORTHANC_BUILDING_SERVER_LIBRARY must be defined
33 #endif
34
35 #if ORTHANC_BUILDING_SERVER_LIBRARY == 1
36 # include "../PrecompiledHeadersServer.h"
37 #endif
38
39 #include "ISqlLookupFormatter.h" 31 #include "ISqlLookupFormatter.h"
40 32
41 #if ORTHANC_BUILDING_SERVER_LIBRARY == 1
42 # include "../../../OrthancFramework/Sources/OrthancException.h"
43 # include "../../../OrthancFramework/Sources/Toolbox.h"
44 #else
45 # include <OrthancException.h>
46 # include <Toolbox.h>
47 #endif
48
49 #include "DatabaseConstraint.h" 33 #include "DatabaseConstraint.h"
34
35 #include <OrthancException.h>
36 #include <Toolbox.h>
50 37
51 #include <cassert> 38 #include <cassert>
52 #include <boost/lexical_cast.hpp> 39 #include <boost/lexical_cast.hpp>
53 #include <list> 40 #include <list>
54 41