| 502 | } |
| 503 | |
| 504 | LASinterval::LASinterval(const U32 threshold) |
| 505 | { |
| 506 | cells = new my_cell_hash; |
| 507 | cells_to_merge = 0; |
| 508 | this->threshold = threshold; |
| 509 | number_intervals = 0; |
| 510 | last_index = I32_MIN; |
| 511 | last_cell = 0; |
| 512 | current_cell = 0; |
| 513 | merged_cells = 0; |
| 514 | merged_cells_temporary = FALSE; |
| 515 | end = 0; |
| 516 | full = 0; |
| 517 | index = 0; |
| 518 | start = 0; |
| 519 | total = 0; |
| 520 | } |
| 521 | |
| 522 | LASinterval::~LASinterval() |
| 523 | { |
nothing calls this directly
no outgoing calls
no test coverage detected