Mercurial > hg > orthanc
comparison OrthancServer/Sources/Database/BaseDatabaseWrapper.h @ 5847:70a879a7b658 find-refactoring
introduction of IDatabaseWrapper::ICompatibilityTransaction
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 29 Oct 2024 13:46:29 +0000 |
parents | 82fc95cc168c |
children |
comparison
equal
deleted
inserted
replaced
5846:c1b9eb21bd61 | 5847:70a879a7b658 |
---|---|
32 * for all recent methods (1.12.X) | 32 * for all recent methods (1.12.X) |
33 **/ | 33 **/ |
34 class BaseDatabaseWrapper : public IDatabaseWrapper | 34 class BaseDatabaseWrapper : public IDatabaseWrapper |
35 { | 35 { |
36 public: | 36 public: |
37 class BaseTransaction : public IDatabaseWrapper::ITransaction | 37 class BaseTransaction : |
38 public IDatabaseWrapper::ITransaction, | |
39 public IDatabaseWrapper::ICompatibilityTransaction | |
38 { | 40 { |
39 public: | 41 public: |
40 virtual int64_t IncrementGlobalProperty(GlobalProperty property, | 42 virtual int64_t IncrementGlobalProperty(GlobalProperty property, |
41 int64_t increment, | 43 int64_t increment, |
42 bool shared) ORTHANC_OVERRIDE; | 44 bool shared) ORTHANC_OVERRIDE; |