comparison OrthancServer/ServerEnumerations.h @ 3077:aae1d6d31fef db-changes

compatibility with orthanc-databases
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 03 Jan 2019 10:06:42 +0100
parents ce272138f15e
children 94f4a18a79cc
comparison
equal deleted inserted replaced
3076:8bc2cb1335f4 3077:aae1d6d31fef
69 ConstraintType_SmallerOrEqual, 69 ConstraintType_SmallerOrEqual,
70 ConstraintType_GreaterOrEqual, 70 ConstraintType_GreaterOrEqual,
71 ConstraintType_Wildcard, 71 ConstraintType_Wildcard,
72 ConstraintType_List 72 ConstraintType_List
73 }; 73 };
74
75 namespace Compatibility
76 {
77 enum IdentifierConstraintType
78 {
79 IdentifierConstraintType_Equal,
80 IdentifierConstraintType_SmallerOrEqual,
81 IdentifierConstraintType_GreaterOrEqual,
82 IdentifierConstraintType_Wildcard /* Case sensitive, "*" or "?" are the only allowed wildcards */
83 };
84 }
74 85
75 86
76 /** 87 /**
77 * WARNING: Do not change the explicit values in the enumerations 88 * WARNING: Do not change the explicit values in the enumerations
78 * below this point. This would result in incompatible databases 89 * below this point. This would result in incompatible databases