comparison Core/DicomFormat/DicomMap.h @ 3650:e5811a9f8df0

removing DicomMap::LoadMainDicomTags()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 05 Feb 2020 11:52:10 +0100
parents 94f4a18a79cc
children 46cb00e4adbb
comparison
equal deleted inserted replaced
3645:8aab20dde416 3650:e5811a9f8df0
186 186
187 static void GetMainDicomTags(std::set<DicomTag>& result); 187 static void GetMainDicomTags(std::set<DicomTag>& result);
188 188
189 void GetTags(std::set<DicomTag>& tags) const; 189 void GetTags(std::set<DicomTag>& tags) const;
190 190
191 static void LoadMainDicomTags(const DicomTag*& tags,
192 size_t& size,
193 ResourceType level);
194
195 static bool ParseDicomMetaInformation(DicomMap& result, 191 static bool ParseDicomMetaInformation(DicomMap& result,
196 const char* dicom, 192 const char* dicom,
197 size_t size); 193 size_t size);
198 194
199 void LogMissingTagsForStore() const; 195 void LogMissingTagsForStore() const;
238 const std::string& defaultValue, 234 const std::string& defaultValue,
239 bool allowBinary) const; 235 bool allowBinary) const;
240 236
241 void RemoveBinaryTags(); 237 void RemoveBinaryTags();
242 238
239 void DumpMainDicomTags(Json::Value& target,
240 ResourceType level) const;
241
242 void ParseMainDicomTags(Json::Value& target,
243 ResourceType level);
244
243 void Print(FILE* fp) const; // For debugging only 245 void Print(FILE* fp) const; // For debugging only
244 }; 246 };
245 } 247 }