| 491 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d ", name(), below_Y); }; |
| 492 | inline BOOL filter(const LASpoint* point) { return (point->get_Y() < below_Y); }; |
| 493 | LAScriterionDropYBelow(I32 below_Y) { this->below_Y = below_Y; }; |
| 494 | private: |
| 495 | I32 below_Y; |
| 496 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected