| 467 | public: |
| 468 | inline const CHAR* name() const { return "drop_X_below"; }; |
| 469 | inline I32 get_command(CHAR* string) const { return sprintf(string, "-%s %d ", name(), below_X); }; |
| 470 | inline BOOL filter(const LASpoint* point) { return (point->get_X() < below_X); }; |
| 471 | LAScriterionDropXBelow(I32 below_X) { this->below_X = below_X; }; |
| 472 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected