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: c1722b5fbe6efab64292c0e5600d307cba3801d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "std/cstdint.hpp"
#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;
};