mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 13:03:36 +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
25 lines
505 B
C++
25 lines
505 B
C++
#pragma once
|
|
|
|
#include "generator/feature_builder.hpp"
|
|
#include "generator/processor_interface.hpp"
|
|
|
|
#include <memory>
|
|
|
|
class FeatureParams;
|
|
|
|
namespace generator
|
|
{
|
|
class ProcessorNoop : public FeatureProcessorInterface
|
|
{
|
|
public:
|
|
// FeatureProcessorInterface overrides:
|
|
std::shared_ptr<FeatureProcessorInterface> Clone() const override
|
|
{
|
|
return std::make_shared<ProcessorNoop>();
|
|
}
|
|
|
|
void Process(feature::FeatureBuilder &) override {}
|
|
void Finish() override {}
|
|
};
|
|
} // namespace generator
|