comparison OrthancServer/ServerEnumerations.h @ 3054:3638de45a08c db-changes

backward compatibility with filtering identifiers
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 21 Dec 2018 12:45:24 +0100
parents 53d583d2c775
children ce272138f15e
comparison
equal deleted inserted replaced
3053:3f986ce336c8 3054:3638de45a08c
52 { 52 {
53 StoreStatus_Success, 53 StoreStatus_Success,
54 StoreStatus_AlreadyStored, 54 StoreStatus_AlreadyStored,
55 StoreStatus_Failure, 55 StoreStatus_Failure,
56 StoreStatus_FilteredOut // Removed by NewInstanceFilter 56 StoreStatus_FilteredOut // Removed by NewInstanceFilter
57 };
58
59 // TODO REMOVE THIS
60 enum IdentifierConstraintType
61 {
62 IdentifierConstraintType_Equal,
63 IdentifierConstraintType_SmallerOrEqual,
64 IdentifierConstraintType_GreaterOrEqual,
65 IdentifierConstraintType_Wildcard /* Case sensitive, "*" or "?" are the only allowed wildcards */
66 }; 57 };
67 58
68 enum DicomTagType 59 enum DicomTagType
69 { 60 {
70 DicomTagType_Identifier, // Tag that whose value is stored and indexed in the DB 61 DicomTagType_Identifier, // Tag that whose value is stored and indexed in the DB