| 161 | } |
| 162 | |
| 163 | static std::string getKeyString(const std::string& key, const ExifData* metadata) { |
| 164 | std::string result; |
| 165 | if (metadata->findKey(ExifKey(key)) != metadata->end()) { |
| 166 | result = metadata->findKey(ExifKey(key))->toString(); |
| 167 | } |
| 168 | return result; |
| 169 | } |
| 170 | |
| 171 | std::ostream& Nikon1MakerNote::printBarValue(std::ostream& os, const Value& value, const ExifData* exifData) { |
| 172 | if (!exifData) |
no test coverage detected