comparison OrthancStone/Sources/Toolbox/OsiriX/StringValue.h @ 1639:5cdc5b98f14d

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 10 Nov 2020 16:41:11 +0100
parents 8563ea5d8ae4
children 9ac2a65d4172
comparison
equal deleted inserted replaced
1638:754ef576d945 1639:5cdc5b98f14d
38 { 38 {
39 private: 39 private:
40 std::string value_; 40 std::string value_;
41 41
42 public: 42 public:
43 StringValue(const std::string& value) : 43 explicit StringValue(const std::string& value) :
44 value_(value) 44 value_(value)
45 { 45 {
46 } 46 }
47 47
48 virtual Type GetType() const ORTHANC_OVERRIDE 48 virtual Type GetType() const ORTHANC_OVERRIDE