Mercurial > hg > orthanc
comparison OrthancServer/Sources/ServerEnumerations.h @ 4096:d633e5bb7ba3
reusing of ISqlLookupFormatter and DatabaseConstraint in orthanc-databases project
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 01 Jul 2020 08:42:21 +0200 |
parents | 05b8fd21089c |
children | 0034f855c023 |
comparison
equal
deleted
inserted
replaced
4094:1c89208fbba9 | 4096:d633e5bb7ba3 |
---|---|
61 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 |
62 DicomTagType_Main, // Tag that is stored in the DB (but not indexed) | 62 DicomTagType_Main, // Tag that is stored in the DB (but not indexed) |
63 DicomTagType_Generic // Tag that is only stored in the JSON files | 63 DicomTagType_Generic // Tag that is only stored in the JSON files |
64 }; | 64 }; |
65 | 65 |
66 enum ConstraintType | |
67 { | |
68 ConstraintType_Equal, | |
69 ConstraintType_SmallerOrEqual, | |
70 ConstraintType_GreaterOrEqual, | |
71 ConstraintType_Wildcard, | |
72 ConstraintType_List | |
73 }; | |
74 | |
75 namespace Compatibility | 66 namespace Compatibility |
76 { | 67 { |
77 enum IdentifierConstraintType | 68 enum IdentifierConstraintType |
78 { | 69 { |
79 IdentifierConstraintType_Equal, | 70 IdentifierConstraintType_Equal, |