comparison OrthancServer/ServerIndex.cpp @ 1555:d6a93e12b1c1

Creation of DICOM files with encapsulated PDF
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 20 Aug 2015 15:18:13 +0200
parents 0586ed8897f1
children de1413733c97
comparison
equal deleted inserted replaced
1554:89ab71a68fcf 1555:d6a93e12b1c1
2095 { 2095 {
2096 db_.GetMainDicomTags(result, id); 2096 db_.GetMainDicomTags(result, id);
2097 return true; 2097 return true;
2098 } 2098 }
2099 } 2099 }
2100
2101
2102 bool ServerIndex::LookupResourceType(ResourceType& type,
2103 const std::string& publicId)
2104 {
2105 boost::mutex::scoped_lock lock(mutex_);
2106
2107 int64_t id;
2108 return db_.LookupResource(id, type, publicId);
2109 }
2110
2100 } 2111 }