| 444 | } // namespace |
| 445 | |
| 446 | BaseApplyFeature::BaseApplyFeature(TileKey const & tileKey, TInsertShapeFn const & insertShape, FeatureType & f, |
| 447 | CaptionDescription const & captions) |
| 448 | : m_insertShape(insertShape) |
| 449 | , m_f(f) |
| 450 | , m_captions(captions) |
| 451 | , m_tileKey(tileKey) |
| 452 | , m_tileRect(tileKey.GetGlobalRect()) |
| 453 | { |
| 454 | ASSERT(m_insertShape != nullptr, ()); |
| 455 | } |
| 456 | |
| 457 | void BaseApplyFeature::FillCommonParams(CommonOverlayViewParams & p) const |
| 458 | { |
nothing calls this directly
no test coverage detected