comparison OrthancServer/Search/Compatibility/CompatibilityDatabaseWrapper.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 ead8576a02ef
children 1a75595d8e44
comparison
equal deleted inserted replaced
3076:8bc2cb1335f4 3077:aae1d6d31fef
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
50 /** 42 /**
51 * This is a compatibility class that contains database primitives 43 * This is a compatibility class that contains database primitives
52 * that were used in Orthanc <= 1.5.1, and that have been removed 44 * that were used in Orthanc <= 1.5.1, and that have been removed
53 * during the optimization of the database engine. 45 * during the optimization of the database engine.
54 **/ 46 **/