| 81 | } |
| 82 | |
| 83 | void HdComment::RecorderFileIndex(int64_t index) { |
| 84 | MdProperty file_index(std::string(kRecorderFileIndex), ""); |
| 85 | file_index.Value(index); |
| 86 | file_index.DataType(MdDataType::MdInteger); |
| 87 | |
| 88 | AddProperty(file_index); |
| 89 | } |
| 90 | |
| 91 | int64_t HdComment::RecorderFileIndex() const { |
| 92 | auto file_index = GetPropertyValue<std::string>(std::string(kRecorderFileIndex)); |