Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
21
generator/processor_noop.hpp
Normal file
21
generator/processor_noop.hpp
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue