| 96 | } |
| 97 | |
| 98 | uint32_t FeaturesCollector::Collect(FeatureBuilder const & fb) |
| 99 | { |
| 100 | FeatureBuilder::Buffer bytes; |
| 101 | fb.SerializeAccuratelyForIntermediate(bytes); |
| 102 | uint32_t const featureId = WriteFeatureBase(bytes, fb); |
| 103 | CHECK_LESS(0, m_featureID, ()); |
| 104 | return featureId; |
| 105 | } |
| 106 | |
| 107 | FeaturesAndRawGeometryCollector::FeaturesAndRawGeometryCollector(std::string const & featuresFileName, |
| 108 | std::string const & rawGeometryFileName) |
nothing calls this directly
no test coverage detected