comparison OrthancFramework/Sources/DicomNetworking/Internals/MoveScp.cpp @ 4288:5b254bd435d3

fix for VS2008
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 04 Nov 2020 18:26:44 +0100
parents 526bd8bad850
children d9473bd5ed43
comparison
equal deleted inserted replaced
4287:5a3374b6e707 4288:5b254bd435d3
167 167
168 MoveScpData& data = *reinterpret_cast<MoveScpData*>(callbackData); 168 MoveScpData& data = *reinterpret_cast<MoveScpData*>(callbackData);
169 if (data.lastRequest_ == NULL) 169 if (data.lastRequest_ == NULL)
170 { 170 {
171 { 171 {
172 std::stringstream s; // This is necessary for VS2008 172 std::stringstream s; // DcmObject::PrintHelper cannot be used with VS2008
173 s << DcmObject::PrintHelper(*requestIdentifiers); 173 requestIdentifiers->print(s);
174 CLOG(TRACE, DICOM) << "Received C-MOVE Request:" << std::endl << s.str(); 174 CLOG(TRACE, DICOM) << "Received C-MOVE Request:" << std::endl << s.str();
175 } 175 }
176 176
177 DicomMap input; 177 DicomMap input;
178 std::set<DicomTag> ignoreTagLength; 178 std::set<DicomTag> ignoreTagLength;