comparison Framework/Common/Utf8StringValue.cpp @ 298:8f655f308de9

added IResult::Print()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 01 Jul 2021 14:39:27 +0200
parents 9d00e5e073e8
children 16aac0287485
comparison
equal deleted inserted replaced
297:86265ef5f3e3 298:8f655f308de9
52 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadFileFormat); 52 throw Orthanc::OrthancException(Orthanc::ErrorCode_BadFileFormat);
53 } 53 }
54 54
55 break; 55 break;
56 56
57 case ValueType_Utf8String:
58 return new Utf8StringValue(utf8_);
59
57 default: 60 default:
58 throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange); 61 throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange);
59 } 62 }
60 } 63 }
61 } 64 }