diff 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
line wrap: on
line diff
--- a/OrthancServer/Sources/ServerEnumerations.h	Fri Mar 29 23:23:01 2024 +0100
+++ b/OrthancServer/Sources/ServerEnumerations.h	Thu Apr 11 19:02:20 2024 +0200
@@ -190,7 +190,9 @@
 
     // The changes below this point are not logged into the database
     ChangeType_Deleted = 4096,
-    ChangeType_NewChildInstance = 4097
+    ChangeType_NewChildInstance = 4097,
+
+    ChangeType_INTERNAL_All = 65535 // used to filter changes
   };
 
   enum BuiltinDecoderTranscoderOrder
@@ -249,6 +251,8 @@
   const char* EnumerationToString(StoreStatus status);
 
   const char* EnumerationToString(ChangeType type);
+  
+  ChangeType StringToChangeType(const std::string& value);
 
   const char* EnumerationToString(Verbosity verbosity);