comparison OrthancServer/Sources/Database/IDatabaseWrapper.h @ 4570:648defffc8cc db-changes

new enum: TransactionType
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 08 Mar 2021 16:04:56 +0100
parents 2a0f8031fb93
children 9224e107d613
comparison
equal deleted inserted replaced
4569:19ea4ecd6d9a 4570:648defffc8cc
193 const std::string& value) = 0; 193 const std::string& value) = 0;
194 194
195 virtual void SetProtectedPatient(int64_t internalId, 195 virtual void SetProtectedPatient(int64_t internalId,
196 bool isProtected) = 0; 196 bool isProtected) = 0;
197 197
198 virtual ITransaction* StartTransaction() = 0; 198 virtual ITransaction* StartTransaction(TransactionType type) = 0;
199 199
200 virtual void SetListener(IDatabaseListener& listener) = 0; 200 virtual void SetListener(IDatabaseListener& listener) = 0;
201 201
202 virtual unsigned int GetDatabaseVersion() = 0; 202 virtual unsigned int GetDatabaseVersion() = 0;
203 203