comparison OrthancFramework/Sources/DicomFormat/DicomTag.h @ 4313:91554aecff9a

removed a friend method for better abi
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 09 Nov 2020 16:09:05 +0100
parents 785a2713323e
children 3b8a868616a8
comparison
equal deleted inserted replaced
4312:6d49e3b6ff77 4313:91554aecff9a
62 62
63 bool operator!= (const DicomTag& other) const; 63 bool operator!= (const DicomTag& other) const;
64 64
65 std::string Format() const; 65 std::string Format() const;
66 66
67 std::ostream& FormatStream(std::ostream& o) const;
68
67 static bool ParseHexadecimal(DicomTag& tag, 69 static bool ParseHexadecimal(DicomTag& tag,
68 const char* value); 70 const char* value);
69
70 ORTHANC_PUBLIC friend std::ostream& operator<< (std::ostream& o, const DicomTag& tag);
71 71
72 static void AddTagsForModule(std::set<DicomTag>& target, 72 static void AddTagsForModule(std::set<DicomTag>& target,
73 DicomModule module); 73 DicomModule module);
74 }; 74 };
75 75