comparison Framework/Common/FileValue.cpp @ 243:f5dc59c56e65

simplification
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 13 Apr 2021 17:53:53 +0200
parents 3236894320d6
children
comparison
equal deleted inserted replaced
242:b97a537f4613 243:f5dc59c56e65
42 42
43 default: 43 default:
44 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadParameterType); 44 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadParameterType);
45 } 45 }
46 } 46 }
47
48 std::string FileValue::Format() const
49 {
50 return "(file - " + boost::lexical_cast<std::string>(content_.size()) + " bytes)";
51 }
52 } 47 }