| 195 | } |
| 196 | |
| 197 | void AddHeader() |
| 198 | { |
| 199 | f_.write((char*)&Signature, sizeof(Signature)); |
| 200 | |
| 201 | uint32_t ver = Version; |
| 202 | AddSection(TagHeader, std::string_view((char*)&ver, sizeof(ver))); |
| 203 | } |
| 204 | |
| 205 | private: |
| 206 | std::ofstream f_; |
no outgoing calls
no test coverage detected