Welcome to mirror list, hosted at ThFree Co, Russian Federation.

emitter_noop.hpp « generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0aa82a6e2022148afd29f4a748e40a7792def41c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once

#include "emitter_interface.hpp"

#include <string>
#include <vector>

class FeatureParams;

namespace feature
{
class FeatureBuilder;
}  // namespace feature

namespace generator
{
class EmitterNoop : public EmitterInterface
{
public:
  // EmitterInterface overrides:
  void Process(feature::FeatureBuilder &) override  {}
  bool Finish() override { return true; }
  void GetNames(std::vector<std::string> &) const override {}
};
}  // namespace generator