| 100 | { |
| 101 | public: |
| 102 | explicit SubWriter(WriterT & writer) |
| 103 | : m_writer(writer) |
| 104 | , m_pos(0) |
| 105 | , m_maxPos(0) |
| 106 | #ifdef DEBUG |
| 107 | , m_offset(GetOffset()) |
| 108 | #endif |
| 109 | {} |
| 110 | |
| 111 | ~SubWriter() |
| 112 | { |
nothing calls this directly
no test coverage detected