| 398 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d %d ", name(), below_X, above_X); }; |
| 399 | inline BOOL filter(const LASpoint* point) { return (point->get_X() < below_X) || (above_X <= point->get_X()); }; |
| 400 | LAScriterionKeepX(I32 below_X, I32 above_X) { this->below_X = below_X; this->above_X = above_X; }; |
| 401 | private: |
| 402 | I32 below_X, above_X; |
| 403 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected