| 7 | namespace generator |
| 8 | { |
| 9 | std::shared_ptr<TranslatorInterface> TranslatorCollection::Clone() const |
| 10 | { |
| 11 | auto p = std::make_shared<TranslatorCollection>(); |
| 12 | for (auto const & c : m_collection) |
| 13 | p->Append(c->Clone()); |
| 14 | return p; |
| 15 | } |
| 16 | |
| 17 | void TranslatorCollection::Emit(OsmElement const & element) |
| 18 | { |