comparison OrthancServer/Plugins/Engine/OrthancPluginDatabaseV3.cpp @ 5519:2c5eb1ef26a0 pg-transactions

removed unused method IDatabaseWrapper::ITransaction::GetDatabaseCapabilities()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 30 Jan 2024 09:21:41 +0100
parents 0d433132b249
children 12d8a1a266e9 f7adfb22e20e
comparison
equal deleted inserted replaced
5518:bbe45a71f5cd 5519:2c5eb1ef26a0
276 // Don't throw exception in destructors 276 // Don't throw exception in destructors
277 that_.errorDictionary_.LogError(code, true); 277 that_.errorDictionary_.LogError(code, true);
278 } 278 }
279 } 279 }
280 280
281 virtual const Capabilities GetDatabaseCapabilities() const ORTHANC_OVERRIDE
282 {
283 return that_.GetDatabaseCapabilities();
284 }
285
286 virtual void Rollback() ORTHANC_OVERRIDE 281 virtual void Rollback() ORTHANC_OVERRIDE
287 { 282 {
288 CheckSuccess(that_.backend_.rollback(transaction_)); 283 CheckSuccess(that_.backend_.rollback(transaction_));
289 CheckNoEvent(); 284 CheckNoEvent();
290 } 285 }