comparison OrthancServer/Sources/Database/IDatabaseWrapper.h @ 4628:5fabef29c4ff db-changes

added new primitive "hasRevisionsSupport" in database SDK, added "CheckRevisions" to URI "/system"
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 20 Apr 2021 15:59:31 +0200
parents f7d5372b59b3
children f0038043fb97 7053502fbf97
comparison
equal deleted inserted replaced
4627:f7d5372b59b3 4628:5fabef29c4ff
266 266
267 virtual unsigned int GetDatabaseVersion() = 0; 267 virtual unsigned int GetDatabaseVersion() = 0;
268 268
269 virtual void Upgrade(unsigned int targetVersion, 269 virtual void Upgrade(unsigned int targetVersion,
270 IStorageArea& storageArea) = 0; 270 IStorageArea& storageArea) = 0;
271
272 virtual bool HasRevisionsSupport() const = 0;
271 }; 273 };
272 } 274 }