| 498 | } |
| 499 | |
| 500 | IptcKey::IptcKey(std::string key) : tag_(0), record_(0), key_(std::move(key)) { |
| 501 | decomposeKey(); |
| 502 | } |
| 503 | |
| 504 | IptcKey::IptcKey(uint16_t tag, uint16_t record) : tag_(tag), record_(record) { |
| 505 | makeKey(); |
nothing calls this directly
no outgoing calls
no test coverage detected