| 42 | } |
| 43 | |
| 44 | TypesHolder::TypesHolder(FeatureType & f) : m_size(0), m_geomType(f.GetGeomType()) |
| 45 | { |
| 46 | f.ForEachType([this](uint32_t type) { Add(type); }); |
| 47 | } |
| 48 | |
| 49 | bool TypesHolder::HasWithSubclass(uint32_t type) const |
| 50 | { |
nothing calls this directly
no test coverage detected