| 495 | //================ |
| 496 | |
| 497 | BitpackStringEncoder::BitpackStringEncoder( unsigned bytestreamNumber, SourceDestBuffer &sbuf, |
| 498 | unsigned outputMaxSize ) : |
| 499 | BitpackEncoder( bytestreamNumber, sbuf, outputMaxSize, 1 ), totalBytesProcessed_( 0 ), |
| 500 | isStringActive_( false ), prefixComplete_( false ), currentCharPosition_( 0 ) |
| 501 | { |
| 502 | } |
| 503 | |
| 504 | uint64_t BitpackStringEncoder::processRecords( size_t recordCount ) |
| 505 | { |
nothing calls this directly
no outgoing calls
no test coverage detected