| 213 | } |
| 214 | |
| 215 | DbImplementation DbImplementation::pick(const UCHAR* info) |
| 216 | { |
| 217 | //DbImplementation(UCHAR p_cpu, UCHAR p_os, UCHAR p_cc, UCHAR p_flags) |
| 218 | return DbImplementation(info[0], info[1], info[2], info[3]); |
| 219 | } |
| 220 | |
| 221 | DbImplementation DbImplementation::fromBackwardCompatibleByte(UCHAR bcImpl) |
| 222 | { |
nothing calls this directly
no test coverage detected