comparison UnitTestsSources/UnitTestsMain.cpp @ 289:4b80ddccec54

sync, cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 10 Dec 2020 15:23:54 +0100
parents 4e9d30c19b4b
children e376158e2dbb
comparison
equal deleted inserted replaced
288:0f5c02eebe20 289:4b80ddccec54
88 explicit TestF(int bundle) : bundle_(bundle) 88 explicit TestF(int bundle) : bundle_(bundle)
89 { 89 {
90 } 90 }
91 91
92 virtual bool Create(std::string& content, 92 virtual bool Create(std::string& content,
93 const std::string& key) 93 const std::string& key) ORTHANC_OVERRIDE
94 { 94 {
95 content = "Bundle " + boost::lexical_cast<std::string>(bundle_) + ", item " + key; 95 content = "Bundle " + boost::lexical_cast<std::string>(bundle_) + ", item " + key;
96 return true; 96 return true;
97 } 97 }
98 }; 98 };