diff OrthancFramework/Sources/HttpServer/IWebDavBucket.h @ 4246:6c3721ff284c

simplification
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 13 Oct 2020 10:39:47 +0200
parents a38376b80cd1
children f047e2734655
line wrap: on
line diff
--- a/OrthancFramework/Sources/HttpServer/IWebDavBucket.h	Sat Oct 10 11:23:11 2020 +0200
+++ b/OrthancFramework/Sources/HttpServer/IWebDavBucket.h	Tue Oct 13 10:39:47 2020 +0200
@@ -84,8 +84,7 @@
       }
 
       virtual void Format(pugi::xml_node& node,
-                          const std::string& parentPath,
-                          bool includeDisplayName) const;
+                          const std::string& parentPath) const = 0;
     };
 
 
@@ -121,8 +120,7 @@
       void SetCreated(bool created);
 
       virtual void Format(pugi::xml_node& node,
-                          const std::string& parentPath,
-                          bool includeDisplayName) const ORTHANC_OVERRIDE;
+                          const std::string& parentPath) const ORTHANC_OVERRIDE;
     };
 
 
@@ -135,8 +133,7 @@
       }
       
       virtual void Format(pugi::xml_node& node,
-                          const std::string& parentPath,
-                          bool includeDisplayName) const ORTHANC_OVERRIDE;
+                          const std::string& parentPath) const ORTHANC_OVERRIDE;
     };
 
 
@@ -156,8 +153,7 @@
       void AddResource(Resource* resource);  // Takes ownership
 
       void Format(std::string& target,
-                  const std::string& parentPath,
-                  bool includeDisplayName) const;
+                  const std::string& parentPath) const;
     };