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

emitter_interface.hpp « generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 88dcee0b8245d37218a1b3344605feb7a81c7295 (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
26
#pragma once

#include <string>
#include <vector>

class FeatureBuilder1;
class FeatureParams;

namespace generator
{
// Implementing this interface allows an object to process FeatureBuilder1 objects and broadcast them.
class EmitterInterface
{
public:
  virtual ~EmitterInterface() = default;

  // This method is used by OsmTranslator to pass |fb| to Emitter for further processing.
  virtual void Process(FeatureBuilder1 & fb) = 0;
  // Finish is used in GenerateFeatureImpl to make whatever work is needed after all OsmElements
  // are processed.
  virtual bool Finish() = 0;
  // Sets buckets (mwm names).
  // TODO(syershov): Make this topic clear.
  virtual void GetNames(std::vector<std::string> & names) const = 0;
};
}  // namespace generator