comparison Plugin/IAuthorizationParser.h @ 153:3683f3d083bd

fix tools/find to allow accessing /dicom-web/studies/../series/../instances/.. on studies that have at least one authorized_labels
author Alain Mazy <am@osimis.io>
date Mon, 18 Mar 2024 11:58:20 +0100
parents 9be1ee2b8fe1
children c4b908970ae4
comparison
equal deleted inserted replaced
152:9f686ee4b158 153:3683f3d083bd
47 const std::map<std::string, std::string>& getArguments) = 0; 47 const std::map<std::string, std::string>& getArguments) = 0;
48 48
49 virtual bool IsListOfResources(const std::string& uri) const = 0; 49 virtual bool IsListOfResources(const std::string& uri) const = 0;
50 50
51 virtual void GetSingleResourcePatterns(std::vector<boost::regex>& patterns) const = 0; 51 virtual void GetSingleResourcePatterns(std::vector<boost::regex>& patterns) const = 0;
52
53 virtual void AddDicomStudy(AccessedResources& target,
54 const std::string& studyDicomUid) = 0;
55
52 }; 56 };
53 } 57 }