comparison OrthancServer/Sources/ServerEnumerations.h @ 5553:28cc06e4859a large-queries

Added ExtendedApiV1: /changes
author Alain Mazy <am@orthanc.team>
date Thu, 11 Apr 2024 19:02:20 +0200
parents 48b8dae6dc77
children 3765085693e5
comparison
equal deleted inserted replaced
5549:dcbf0c776945 5553:28cc06e4859a
188 188
189 ChangeType_INTERNAL_LastLogged = 4095, 189 ChangeType_INTERNAL_LastLogged = 4095,
190 190
191 // The changes below this point are not logged into the database 191 // The changes below this point are not logged into the database
192 ChangeType_Deleted = 4096, 192 ChangeType_Deleted = 4096,
193 ChangeType_NewChildInstance = 4097 193 ChangeType_NewChildInstance = 4097,
194
195 ChangeType_INTERNAL_All = 65535 // used to filter changes
194 }; 196 };
195 197
196 enum BuiltinDecoderTranscoderOrder 198 enum BuiltinDecoderTranscoderOrder
197 { 199 {
198 BuiltinDecoderTranscoderOrder_Before, 200 BuiltinDecoderTranscoderOrder_Before,
247 const char* EnumerationToString(SeriesStatus status); 249 const char* EnumerationToString(SeriesStatus status);
248 250
249 const char* EnumerationToString(StoreStatus status); 251 const char* EnumerationToString(StoreStatus status);
250 252
251 const char* EnumerationToString(ChangeType type); 253 const char* EnumerationToString(ChangeType type);
254
255 ChangeType StringToChangeType(const std::string& value);
252 256
253 const char* EnumerationToString(Verbosity verbosity); 257 const char* EnumerationToString(Verbosity verbosity);
254 258
255 bool IsUserMetadata(MetadataType type); 259 bool IsUserMetadata(MetadataType type);
256 260