| 87 | } |
| 88 | |
| 89 | void WriterImplementation::putLevel() |
| 90 | { |
| 91 | current.rewind(); |
| 92 | if (current.isEof()) |
| 93 | { |
| 94 | return; |
| 95 | } |
| 96 | current.insertString(AuthReader::AUTH_TYPE, type); |
| 97 | |
| 98 | result.insertBytes(sequence++, current.getBuffer(), current.getBufferLength()); |
| 99 | } |
| 100 | |
| 101 | void WriterImplementation::setType(Firebird::CheckStatusWrapper* st, const char* value) |
| 102 | { |
nothing calls this directly
no test coverage detected