| 37 | } |
| 38 | |
| 39 | std::unique_ptr<FeatureType> FeatureSource::GetOriginalFeature(uint32_t index) const |
| 40 | { |
| 41 | ASSERT(m_handle.IsAlive(), ()); |
| 42 | ASSERT(m_vector, ()); |
| 43 | auto ft = m_vector->GetByIndex(index); |
| 44 | ft->SetID({GetMwmId(), index}); |
| 45 | return ft; |
| 46 | } |
| 47 | |
| 48 | FeatureStatus FeatureSource::GetFeatureStatus(uint32_t index) const |
| 49 | { |
no test coverage detected