comparison Core/DicomFormat/DicomMap.cpp @ 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
122 **/ 122 **/
123 DICOM_TAG_IMAGE_ORIENTATION_PATIENT // New in Orthanc 1.4.2 123 DICOM_TAG_IMAGE_ORIENTATION_PATIENT // New in Orthanc 1.4.2
124 }; 124 };
125 125
126 126
127 void DicomMap::LoadMainDicomTags(const DicomTag*& tags, 127 static void LoadMainDicomTags(const DicomTag*& tags,
128 size_t& size, 128 size_t& size,
129 ResourceType level) 129 ResourceType level)
130 { 130 {
131 switch (level) 131 switch (level)
132 { 132 {
133 case ResourceType_Patient: 133 case ResourceType_Patient:
134 tags = patientTags; 134 tags = patientTags;
1315 1315
1316 map_ = kept; 1316 map_ = kept;
1317 } 1317 }
1318 1318
1319 1319
1320 void DicomMap::DumpMainDicomTags(Json::Value& target,
1321 ResourceType level) const
1322 {
1323 target = Json::objectValue;
1324
1325
1326 }
1327
1328
1329 void DicomMap::ParseMainDicomTags(Json::Value& target,
1330 ResourceType level)
1331 {
1332 }
1333
1334
1320 void DicomMap::Print(FILE* fp) const 1335 void DicomMap::Print(FILE* fp) const
1321 { 1336 {
1322 DicomArray a(*this); 1337 DicomArray a(*this);
1323 a.Print(fp); 1338 a.Print(fp);
1324 } 1339 }