comparison OrthancFramework/Sources/HttpServer/IWebDavBucket.h @ 4234:a38376b80cd1

WebDAV: by-studies and by-patients
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 08 Oct 2020 13:38:44 +0200
parents 688435755466
children 6c3721ff284c
comparison
equal deleted inserted replaced
4233:ca2a55a62c81 4234:a38376b80cd1
146 std::list<Resource*> resources_; 146 std::list<Resource*> resources_;
147 147
148 public: 148 public:
149 ~Collection(); 149 ~Collection();
150 150
151 size_t GetSize() const
152 {
153 return resources_.size();
154 }
155
151 void AddResource(Resource* resource); // Takes ownership 156 void AddResource(Resource* resource); // Takes ownership
152 157
153 void Format(std::string& target, 158 void Format(std::string& target,
154 const std::string& parentPath, 159 const std::string& parentPath,
155 bool includeDisplayName) const; 160 bool includeDisplayName) const;