| 44 | { } |
| 45 | |
| 46 | void WriterImplementation::store(ClumpletWriter* to, unsigned char tag) |
| 47 | { |
| 48 | putLevel(); |
| 49 | if (to) |
| 50 | { |
| 51 | to->deleteWithTag(tag); |
| 52 | to->insertBytes(tag, result.getBuffer(), result.getBufferLength()); |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | void WriterImplementation::reset() |
| 57 | { |
no test coverage detected