comparison Core/DicomNetworking/DicomStoreUserConnection.h @ 3875:ea1d32861cfc transcoding

moving timeout from DicomAssocation to DicomAssociationParameters
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 04 May 2020 14:49:31 +0200
parents 2effa961f67f
children a18b34dec94a
comparison
equal deleted inserted replaced
3874:2effa961f67f 3875:ea1d32861cfc
88 const DicomAssociationParameters& GetParameters() const 88 const DicomAssociationParameters& GetParameters() const
89 { 89 {
90 return parameters_; 90 return parameters_;
91 } 91 }
92 92
93 void SetTimeout(int timeout)
94 {
95 parameters_.SetTimeout(timeout);
96 }
97
98 void SetCommonClassesProposed(bool proposed) 93 void SetCommonClassesProposed(bool proposed)
99 { 94 {
100 proposeCommonClasses_ = proposed; 95 proposeCommonClasses_ = proposed;
101 } 96 }
102 97