comparison Plugins/Samples/Common/OrthancPluginCppWrapper.h @ 3914:e14b5a7a0f75 transcoding

note
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 11 May 2020 12:12:23 +0200
parents daa1bc6700bf
children 7e33516965f8
comparison
equal deleted inserted replaced
3913:6ddad3e0b569 3914:e14b5a7a0f75
45 #include <set> 45 #include <set>
46 #include <map> 46 #include <map>
47 47
48 48
49 49
50 /**
51 * The definition of ORTHANC_PLUGINS_VERSION_IS_ABOVE below is for
52 * backward compatibility with Orthanc SDK <= 1.3.0.
53 *
54 * $ hg diff -r Orthanc-1.3.0:Orthanc-1.3.1 ../../../Plugins/Include/orthanc/OrthancCPlugin.h
55 *
56 **/
50 #if !defined(ORTHANC_PLUGINS_VERSION_IS_ABOVE) 57 #if !defined(ORTHANC_PLUGINS_VERSION_IS_ABOVE)
51 #define ORTHANC_PLUGINS_VERSION_IS_ABOVE(major, minor, revision) \ 58 #define ORTHANC_PLUGINS_VERSION_IS_ABOVE(major, minor, revision) \
52 (ORTHANC_PLUGINS_MINIMAL_MAJOR_NUMBER > major || \ 59 (ORTHANC_PLUGINS_MINIMAL_MAJOR_NUMBER > major || \
53 (ORTHANC_PLUGINS_MINIMAL_MAJOR_NUMBER == major && \ 60 (ORTHANC_PLUGINS_MINIMAL_MAJOR_NUMBER == major && \
54 (ORTHANC_PLUGINS_MINIMAL_MINOR_NUMBER > minor || \ 61 (ORTHANC_PLUGINS_MINIMAL_MINOR_NUMBER > minor || \