| 43 | |
| 44 | template <class Index, class Container> |
| 45 | void AddToIndex(Index & index, Key relationId, Container const & values) |
| 46 | { |
| 47 | for (auto const & v : values) |
| 48 | index.Add(v.first, relationId); |
| 49 | } |
| 50 | |
| 51 | class PointStorageWriterBase : public PointStorageWriterInterface |
| 52 | { |
no test coverage detected