comparison OrthancServer/main.cpp @ 1250:2ffe07abd9d8

removal of const on IStorageArea::Read()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 05 Jan 2015 11:14:58 +0100
parents 32fcc5dc7562
children b9e2ed59cae4
comparison
equal deleted inserted replaced
1249:40725595aaf0 1250:2ffe07abd9d8
404 } 404 }
405 } 405 }
406 406
407 virtual void Read(std::string& content, 407 virtual void Read(std::string& content,
408 const std::string& uuid, 408 const std::string& uuid,
409 FileContentType type) const 409 FileContentType type)
410 { 410 {
411 if (type != FileContentType_Dicom) 411 if (type != FileContentType_Dicom)
412 { 412 {
413 storage_.Read(content, uuid, type); 413 storage_.Read(content, uuid, type);
414 } 414 }