diff OrthancFramework/Sources/RestApi/RestApiPath.cpp @ 4330:a01b1c9cbef4

moving generic type definitions from IHttpHandler to HttpToolbox
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 25 Nov 2020 14:39:10 +0100
parents b30a8de92ad9
children d9473bd5ed43
line wrap: on
line diff
--- a/OrthancFramework/Sources/RestApi/RestApiPath.cpp	Wed Nov 25 13:46:49 2020 +0100
+++ b/OrthancFramework/Sources/RestApi/RestApiPath.cpp	Wed Nov 25 14:39:10 2020 +0100
@@ -68,7 +68,7 @@
     }
   }
 
-  bool RestApiPath::Match(IHttpHandler::Arguments& components,
+  bool RestApiPath::Match(HttpToolbox::Arguments& components,
                           UriComponents& trailing,
                           const std::string& uriRaw) const
   {
@@ -77,7 +77,7 @@
     return Match(components, trailing, uri);
   }
 
-  bool RestApiPath::Match(IHttpHandler::Arguments& components,
+  bool RestApiPath::Match(HttpToolbox::Arguments& components,
                           UriComponents& trailing,
                           const UriComponents& uri) const
   {
@@ -125,7 +125,7 @@
 
   bool RestApiPath::Match(const UriComponents& uri) const
   {
-    IHttpHandler::Arguments components;
+    HttpToolbox::Arguments components;
     UriComponents trailing;
     return Match(components, trailing, uri);
   }