| 500 | public: |
| 501 | inline const CHAR* name() const { return "drop_Y_above"; }; |
| 502 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d ", name(), above_Y); }; |
| 503 | inline BOOL filter(const LASpoint* point) { return (point->get_Y() >= above_Y); }; |
| 504 | LAScriterionDropYAbove(I32 above_Y) { this->above_Y = above_Y; }; |
| 505 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected