| 302 | int64_t Hd4Block::Index() const { return FilePosition(); } |
| 303 | |
| 304 | void Hd4Block::Author(const std::string& author) { |
| 305 | SetCommonProperty(*this, "author", author); |
| 306 | } |
| 307 | |
| 308 | std::string Hd4Block::Author() const { |
| 309 | return GetCommonProperty<std::string>(*this, "author"); |
nothing calls this directly
no test coverage detected