| 385 | float rt_delta; |
| 386 | float qvalue; |
| 387 | void setFeature(sqlite3_stmt* stmt) |
| 388 | { |
| 389 | feat_id = Sql::extractInt64(stmt, I_FEATID); |
| 390 | rt_exp = Sql::extractFloat(stmt, I_EXPRT); |
| 391 | rt_lw = Sql::extractFloat(stmt, I_RTLEFT); |
| 392 | rt_rw = Sql::extractFloat(stmt, I_RTRIGHT); |
| 393 | rt_delta = Sql::extractFloat(stmt, I_DELTART); |
| 394 | qvalue = Sql::extractFloat(stmt, I_QVALUE); |
| 395 | } |
| 396 | void updateFeat(const LineState& new_line) |
| 397 | { |
| 398 | feat_id = new_line.feat_id; |
no test coverage detected