| 28 | |
| 29 | |
| 30 | qrcodegen::QrSegment::Mode::Mode(int mode, int cc0, int cc1, int cc2) : |
| 31 | modeBits(mode) { |
| 32 | numBitsCharCount[0] = cc0; |
| 33 | numBitsCharCount[1] = cc1; |
| 34 | numBitsCharCount[2] = cc2; |
| 35 | } |
| 36 | |
| 37 | |
| 38 | int qrcodegen::QrSegment::Mode::numCharCountBits(int ver) const { |
nothing calls this directly
no outgoing calls
no test coverage detected