| 363 | float precmz; |
| 364 | |
| 365 | void setPC(sqlite3_stmt* stmt) |
| 366 | { |
| 367 | prec_id = Sql::extractInt(stmt, I_PRECID); |
| 368 | seq = Sql::extractString(stmt, I_MODSEQ); |
| 369 | chargePC = (short)Sql::extractInt(stmt, I_PRECQ); |
| 370 | precmz = Sql::extractFloat(stmt, I_PRECMZ); |
| 371 | } |
| 372 | void updatePC(LineState& new_line) |
| 373 | { |
| 374 | prec_id = new_line.prec_id; |
no test coverage detected