| 91 | } |
| 92 | |
| 93 | std::vector<bool> FluxDecoder::readBits(unsigned count) |
| 94 | { |
| 95 | std::vector<bool> result; |
| 96 | while (!_fmr->eof() && count--) |
| 97 | { |
| 98 | bool b = readBit(); |
| 99 | result.push_back(b); |
| 100 | } |
| 101 | return result; |
| 102 | } |
| 103 | |
| 104 | std::vector<bool> FluxDecoder::readBits(const Fluxmap::Position& until) |
| 105 | { |