comparison OrthancServer/Sources/Database/BaseDatabaseWrapper.cpp @ 5833:58c549b881ae find-refactoring-clean

merged find-refactoring -> find-refactoring-clean
author Alain Mazy <am@orthanc.team>
date Wed, 09 Oct 2024 11:01:11 +0200
parents 25df40a274fd
children
comparison
equal deleted inserted replaced
5754:f75596b224e0 5833:58c549b881ae
44 int64_t& uncompressedSize) 44 int64_t& uncompressedSize)
45 { 45 {
46 throw OrthancException(ErrorCode_NotImplemented); // Not supported 46 throw OrthancException(ErrorCode_NotImplemented); // Not supported
47 } 47 }
48 48
49 void BaseDatabaseWrapper::BaseTransaction::GetChangesExtended(std::list<ServerIndexChange>& target /*out*/,
50 bool& done /*out*/,
51 int64_t since,
52 int64_t to,
53 uint32_t limit,
54 const std::set<ChangeType>& filterType)
55 {
56 throw OrthancException(ErrorCode_NotImplemented); // Not supported
57 }
58
59
49 60
50 void BaseDatabaseWrapper::BaseTransaction::ExecuteFind(FindResponse& response, 61 void BaseDatabaseWrapper::BaseTransaction::ExecuteFind(FindResponse& response,
51 const FindRequest& request, 62 const FindRequest& request,
52 const Capabilities& capabilities) 63 const Capabilities& capabilities)
53 { 64 {