| 479 | inline const CHAR* name() const { return "drop_X_above"; }; |
| 480 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d ", name(), above_X); }; |
| 481 | inline BOOL filter(const LASpoint* point) { return (point->get_X() >= above_X); }; |
| 482 | LAScriterionDropXAbove(I32 above_X) { this->above_X = above_X; }; |
| 483 | private: |
| 484 | I32 above_X; |
nothing calls this directly
no outgoing calls
no test coverage detected