| 409 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d %d ", name(), below_X, above_X); }; |
| 410 | inline BOOL filter(const LASpoint* point) { return ((below_X <= point->get_X()) && (point->get_X() < above_X)); }; |
| 411 | LAScriterionDropX(I32 below_X, I32 above_X) { this->below_X = below_X; this->above_X = above_X; }; |
| 412 | private: |
| 413 | I32 below_X; |
| 414 | I32 above_X; |
nothing calls this directly
no outgoing calls
no test coverage detected