comparison OrthancServer/Search/Compatibility/CompatibilityDatabaseWrapper.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 c7db469bbe8e
children 6c5d4281da4a
comparison
equal deleted inserted replaced
3053:3f986ce336c8 3054:3638de45a08c
37 37
38 namespace Orthanc 38 namespace Orthanc
39 { 39 {
40 namespace Compatibility 40 namespace Compatibility
41 { 41 {
42 enum IdentifierConstraintType
43 {
44 IdentifierConstraintType_Equal,
45 IdentifierConstraintType_SmallerOrEqual,
46 IdentifierConstraintType_GreaterOrEqual,
47 IdentifierConstraintType_Wildcard /* Case sensitive, "*" or "?" are the only allowed wildcards */
48 };
49
42 /** 50 /**
43 * This is a compatibility class that contains database primitives 51 * This is a compatibility class that contains database primitives
44 * that were used in Orthanc <= 1.5.1, and that have been removed 52 * that were used in Orthanc <= 1.5.1, and that have been removed
45 * during the optimization of the database engine. 53 * during the optimization of the database engine.
46 **/ 54 **/