mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 21:13:35 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
30 lines
700 B
C++
30 lines
700 B
C++
#pragma once
|
|
|
|
#include "generator/feature_builder.hpp"
|
|
|
|
#include "base/assert.hpp"
|
|
#include "base/thread_safe_queue.hpp"
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class FeatureParams;
|
|
|
|
namespace generator
|
|
{
|
|
// Implementing this interface allows an object to process FeatureBuilder objects and broadcast
|
|
// them.
|
|
class FeatureProcessorInterface
|
|
{
|
|
public:
|
|
virtual ~FeatureProcessorInterface() = default;
|
|
|
|
virtual std::shared_ptr<FeatureProcessorInterface> Clone() const = 0;
|
|
|
|
// This method is used by OsmTranslator to pass |fb| to Processor for further processing.
|
|
virtual void Process(feature::FeatureBuilder & fb) = 0;
|
|
virtual void Finish() = 0;
|
|
};
|
|
} // namespace generator
|