comparison OrthancFramework/Sources/JobsEngine/Operations/JobOperationValues.h @ 4350:e457c30970cf

fix ORTHANC_DEPRECATED macro for C++14
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sun, 06 Dec 2020 13:16:27 +0100
parents 93c281752e7a
children d9473bd5ed43
comparison
equal deleted inserted replaced
4349:85237ae3a076 4350:e457c30970cf
48 private: 48 private:
49 std::vector<IJobOperationValue*> values_; 49 std::vector<IJobOperationValue*> values_;
50 50
51 #if ORTHANC_BUILDING_FRAMEWORK_LIBRARY == 1 51 #if ORTHANC_BUILDING_FRAMEWORK_LIBRARY == 1
52 // For binary compatibility with Orthanc <= 1.8.0 52 // For binary compatibility with Orthanc <= 1.8.0
53 void Append(JobOperationValue* value) ORTHANC_DEPRECATED; 53 ORTHANC_DEPRECATED(void Append(JobOperationValue* value));
54 #endif 54 #endif
55 55
56 void Append(JobOperationValues& target, 56 void Append(JobOperationValues& target,
57 bool clear); 57 bool clear);
58 58