| 161 | } |
| 162 | |
| 163 | TypesHolder FeatureBuilder::GetTypesHolder() const |
| 164 | { |
| 165 | CHECK(IsValid(), (*this)); |
| 166 | |
| 167 | TypesHolder holder(m_params.GetGeomType()); |
| 168 | for (auto const t : m_params.m_types) |
| 169 | holder.Add(t); |
| 170 | |
| 171 | return holder; |
| 172 | } |
| 173 | |
| 174 | bool FeatureBuilder::PreSerialize() |
| 175 | { |
no test coverage detected