comparison OrthancServer/ServerEnumerations.h @ 1818:1065401501fb worklists

ParsedDicomFile::CreateFromJson
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 24 Nov 2015 16:48:23 +0100
parents bdfae6e17d23
children 0ef4e6e66b56
comparison
equal deleted inserted replaced
1817:9a6de24209cf 1818:1065401501fb
125 DicomToJsonFlags_IncludePrivateTags | 125 DicomToJsonFlags_IncludePrivateTags |
126 DicomToJsonFlags_IncludeUnknownTags | 126 DicomToJsonFlags_IncludeUnknownTags |
127 DicomToJsonFlags_ConvertBinaryToNull) 127 DicomToJsonFlags_ConvertBinaryToNull)
128 }; 128 };
129 129
130 enum DicomFromJsonFlags
131 {
132 DicomFromJsonFlags_DecodeDataUriScheme = (1 << 0),
133 DicomFromJsonFlags_GenerateIdentifiers = (1 << 1)
134 };
135
130 enum IdentifierConstraintType 136 enum IdentifierConstraintType
131 { 137 {
132 IdentifierConstraintType_Equal, 138 IdentifierConstraintType_Equal,
133 IdentifierConstraintType_SmallerOrEqual, 139 IdentifierConstraintType_SmallerOrEqual,
134 IdentifierConstraintType_GreaterOrEqual, 140 IdentifierConstraintType_GreaterOrEqual,