comparison OrthancServer/FromDcmtkBridge.h @ 1689:26083d84d237

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 07 Oct 2015 16:54:05 +0200
parents 14a32b2fa63e
children ae09132e4237
comparison
equal deleted inserted replaced
1688:27d70e9ee2e4 1689:26083d84d237
118 118
119 static bool SaveToMemoryBuffer(std::string& buffer, 119 static bool SaveToMemoryBuffer(std::string& buffer,
120 DcmDataset& dataSet); 120 DcmDataset& dataSet);
121 121
122 static ValueRepresentation GetValueRepresentation(const DicomTag& tag); 122 static ValueRepresentation GetValueRepresentation(const DicomTag& tag);
123
124 static DcmElement* CreateElementForTag(const DicomTag& tag);
125
126 static void FillElementWithString(DcmElement& element,
127 const DicomTag& tag,
128 const std::string& value,
129 bool interpretBinaryTags);
130
131 static DcmElement* FromJson(const Json::Value& element,
132 const DicomTag& tag,
133 bool interpretBinaryTags);
123 }; 134 };
124 } 135 }