Remember the coordinates.
| 1527 | public: |
| 1528 | /// Remember the coordinates. |
| 1529 | ContainsPoint(double lon, double lat) : _lon(lon), _lat(lat) { /* Empty by design. */ } |
| 1530 | /// Check is the region contains the stored point. |
| 1531 | bool operator()(const Region *region) const { return region->getRules()->insideRegion(_lon, _lat); } |
| 1532 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected