| 146 | public: |
| 147 | FindMarkedXCOMBase(const RuleRegion ®ion) : _region(region) { /* Empty by design. */ } |
| 148 | bool operator()(const Base *base) const { return (_region.insideRegion(base->getLongitude(), base->getLatitude()) && base->getRetaliationTarget()); } |
| 149 | private: |
| 150 | const RuleRegion &_region; |
| 151 | }; |
nothing calls this directly
no test coverage detected