comparison OrthancServer/Sources/Database/BaseDatabaseWrapper.cpp @ 5804:25df40a274fd find-refactoring

/changes: allowing filtering on multiple changes
author Alain Mazy <am@orthanc.team>
date Mon, 23 Sep 2024 15:40:27 +0200
parents ca06dde85358
children
comparison
equal deleted inserted replaced
5803:e219e272650d 5804:25df40a274fd
49 void BaseDatabaseWrapper::BaseTransaction::GetChangesExtended(std::list<ServerIndexChange>& target /*out*/, 49 void BaseDatabaseWrapper::BaseTransaction::GetChangesExtended(std::list<ServerIndexChange>& target /*out*/,
50 bool& done /*out*/, 50 bool& done /*out*/,
51 int64_t since, 51 int64_t since,
52 int64_t to, 52 int64_t to,
53 uint32_t limit, 53 uint32_t limit,
54 ChangeType filterType) 54 const std::set<ChangeType>& filterType)
55 { 55 {
56 throw OrthancException(ErrorCode_NotImplemented); // Not supported 56 throw OrthancException(ErrorCode_NotImplemented); // Not supported
57 } 57 }
58 58
59 59