comparison OrthancServer/Sources/Database/FindRequest.h @ 5574:5a13483d12c5 find-refactoring

find-refactoring: attachments
author Alain Mazy <am@orthanc.team>
date Fri, 26 Apr 2024 16:32:18 +0200
parents b0b5546f1b9f
children 74cc31c8db2b
comparison
equal deleted inserted replaced
5569:738f80622e91 5574:5a13483d12c5
47 ResponseContent_Labels = (1 << 2), // get all labels 47 ResponseContent_Labels = (1 << 2), // get all labels
48 ResponseContent_Attachments = (1 << 3), // retrieve all attachments, their values and revision 48 ResponseContent_Attachments = (1 << 3), // retrieve all attachments, their values and revision
49 ResponseContent_Parent = (1 << 4), // get the id of the parent 49 ResponseContent_Parent = (1 << 4), // get the id of the parent
50 ResponseContent_Children = (1 << 5), // retrieve the list of children ids 50 ResponseContent_Children = (1 << 5), // retrieve the list of children ids
51 ResponseContent_ChildInstanceId = (1 << 6), // When you need to access all tags from a patient/study/series, you might need to open the DICOM file of a child instance 51 ResponseContent_ChildInstanceId = (1 << 6), // When you need to access all tags from a patient/study/series, you might need to open the DICOM file of a child instance
52 ResponseContent_IsStable = (1 << 7), // This is currently not saved in DB but it could be in the future. 52 ResponseContent_ChildrenMetadata = (1 << 7), // That is actually required to compute the series status but could be usefull for other stuffs.
53 ResponseContent_IsStable = (1 << 8), // This is currently not saved in DB but it could be in the future.
53 54
54 ResponseContent_IdentifiersOnly = 0, 55 ResponseContent_IdentifiersOnly = 0,
55 ResponseContent_INTERNAL = 0x7FFFFFFF 56 ResponseContent_INTERNAL = 0x7FFFFFFF
56 }; 57 };
57 58