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: 64202ab11c47993d37fadc4a0baa6aa69a4c1ee2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "emitter_interface.hpp"

#include <string>
#include <vector>

class FeatureBuilder1;
class FeatureParams;

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