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

benchmark_provider.hpp « map - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 045fe8d5d9153bfed117d8a68e62edc6c441a452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma once

#include "geometry/rect2d.hpp"
#include "std/list.hpp"

struct BenchmarkRectProvider
{
  int m_endLevel;
  list<pair<m2::RectD, int> > m_rects;
  BenchmarkRectProvider(int startLevel, m2::RectD const & startRect, int endLevel);

  bool hasRect() const;
  m2::RectD const nextRect();
};