comparison OrthancServer/ServerIndex.h @ 306:326d5a4a5af3

modification of instances
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 20 Dec 2012 16:44:50 +0100
parents 4eea080e6e7a
children 6ab6cdeedf4e
comparison
equal deleted inserted replaced
305:86bb79522f19 306:326d5a4a5af3
144 bool isProtected); 144 bool isProtected);
145 145
146 void GetChildInstances(std::list<std::string>& result, 146 void GetChildInstances(std::list<std::string>& result,
147 const std::string& publicId); 147 const std::string& publicId);
148 148
149 void SetMetadata(const std::string& publicId,
150 MetadataType type,
151 const std::string& value);
152
153 bool LookupMetadata(std::string& target,
154 const std::string& publicId,
155 MetadataType type);
156
157 bool LookupParent(std::string& target,
158 const std::string& publicId);
149 }; 159 };
150 } 160 }