Mercurial > hg > orthanc
comparison OrthancFramework/Sources/MetricsRegistry.cpp @ 4203:4d42408da117
improving const-correctness in ParsedDicomFile
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 17 Sep 2020 15:01:31 +0200 |
parents | 2007ab69ac16 |
children | b30a8de92ad9 |
comparison
equal
deleted
inserted
replaced
4202:2007ab69ac16 | 4203:4d42408da117 |
---|---|
92 Touch(value); | 92 Touch(value); |
93 } | 93 } |
94 } | 94 } |
95 | 95 |
96 public: | 96 public: |
97 Item(MetricsType type) : | 97 explicit Item(MetricsType type) : |
98 type_(type), | 98 type_(type), |
99 hasValue_(false), | 99 hasValue_(false), |
100 value_(0) | 100 value_(0) |
101 { | 101 { |
102 } | 102 } |