| 576 | inline const CHAR* name() const { return "keep_second_last"; }; |
| 577 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s ", name()); }; |
| 578 | inline BOOL filter(const LASpoint* point) { return ((point->number_of_returns <= 1) || (point->return_number != (point->number_of_returns - 1))); }; |
| 579 | }; |
| 580 | |
| 581 | class LAScriterionDropFirstReturn : public LAScriterion |
nothing calls this directly
no outgoing calls
no test coverage detected