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

interval_index_iface.hpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d2ce81c8ee18906198d6949cce80aafd58d3a0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
#include "../std/function.hpp"


class IntervalIndexIFace
{
public:
  virtual ~IntervalIndexIFace() {}

  typedef function<void (uint32_t)> FunctionT;

  virtual void DoForEach(FunctionT const & f, uint64_t beg, uint64_t end) = 0;
};