comparison Core/DicomNetworking/DicomStoreUserConnection.h @ 3870:09798f2b985f transcoding

added a Timeout argument to every DICOM command + 'TargetAet' not mandatory anymore in /retrieve
author Alain Mazy <alain@mazy.be>
date Wed, 29 Apr 2020 12:26:51 +0200
parents d5be23fc0106
children 2effa961f67f
comparison
equal deleted inserted replaced
3869:c23ef85c7d9c 3870:09798f2b985f
93 const DicomAssociationParameters& GetParameters() const 93 const DicomAssociationParameters& GetParameters() const
94 { 94 {
95 return parameters_; 95 return parameters_;
96 } 96 }
97 97
98 void SetTimeout(int timeout)
99 {
100 parameters_.SetTimeout(timeout);
101 }
102
98 void SetCommonClassesProposed(bool proposed) 103 void SetCommonClassesProposed(bool proposed)
99 { 104 {
100 proposeCommonClasses_ = proposed; 105 proposeCommonClasses_ = proposed;
101 } 106 }
102 107