| 11458 | } |
| 11459 | |
| 11460 | void LAStransform::delete_operation(const CHAR* name) |
| 11461 | { |
| 11462 | if (operations) |
| 11463 | { |
| 11464 | U32 i; |
| 11465 | for (i = 0; i < num_operations; i++) |
| 11466 | { |
| 11467 | if (strcmp(operations[i]->name(), name) == 0) |
| 11468 | { |
| 11469 | delete operations[i]; |
| 11470 | for (i = i + 1; i < num_operations; i++) |
| 11471 | { |
| 11472 | operations[i - 1] = operations[i]; |
| 11473 | } |
| 11474 | num_operations--; |
| 11475 | return; |
| 11476 | } |
| 11477 | } |
| 11478 | } |
| 11479 | } |
| 11480 | |
| 11481 | void LAStransform::setFilter(LASfilter* filter) |
| 11482 | { |