| 5404 | } |
| 5405 | |
| 5406 | I32 LASfilter::unparse(CHAR* string) const |
| 5407 | { |
| 5408 | U32 i; |
| 5409 | I32 n = 0; |
| 5410 | for (i = 0; i < num_criteria; i++) |
| 5411 | { |
| 5412 | n += criteria[i]->get_command(&string[n]); |
| 5413 | } |
| 5414 | return n; |
| 5415 | } |
| 5416 | |
| 5417 | U32 LASfilter::get_decompress_selective() const |
| 5418 | { |
nothing calls this directly
no test coverage detected