| 400 | } |
| 401 | |
| 402 | TypeId IptcDataSets::dataSetType(uint16_t number, uint16_t recordId) { |
| 403 | int idx = dataSetIdx(number, recordId); |
| 404 | if (idx == -1) |
| 405 | return unknownDataSet.type_; |
| 406 | return records_[recordId][idx].type_; |
| 407 | } |
| 408 | |
| 409 | std::string IptcDataSets::dataSetName(uint16_t number, uint16_t recordId) { |
| 410 | if (int idx = dataSetIdx(number, recordId); idx != -1) |
nothing calls this directly
no outgoing calls
no test coverage detected