| 204 | |
| 205 | template <typename T> |
| 206 | void writeInteger(T value) { |
| 207 | fixEndianness(value); |
| 208 | writeBytes(reinterpret_cast<uint8_t*>(&value), sizeof(value)); |
| 209 | } |
| 210 | |
| 211 | CountingDecorator<TWriter> writer_; |
| 212 | const ResourceManager* resources_; |
no test coverage detected