comparison Core/HttpClient.h @ 2137:595cf22b3e7e

safety checks of macros
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 09 Nov 2016 15:07:50 +0100
parents 58a0ee0b4be1
children a3a65de1840f
comparison
equal deleted inserted replaced
2136:dd609a99d39a 2137:595cf22b3e7e
37 37
38 #include <string> 38 #include <string>
39 #include <boost/shared_ptr.hpp> 39 #include <boost/shared_ptr.hpp>
40 #include <json/json.h> 40 #include <json/json.h>
41 41
42 #if !defined(ORTHANC_ENABLE_SSL)
43 # error The macro ORTHANC_ENABLE_SSL must be defined
44 #endif
45
46 #if !defined(ORTHANC_ENABLE_PKCS11)
47 # error The macro ORTHANC_ENABLE_PKCS11 must be defined
48 #endif
49
50
42 namespace Orthanc 51 namespace Orthanc
43 { 52 {
44 class HttpClient 53 class HttpClient
45 { 54 {
46 public: 55 public: