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

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

#include "basic_tiling_render_policy.hpp"

class TilingRenderPolicyST : public BasicTilingRenderPolicy
{
private:

  int m_maxTilesCount;

public:

  TilingRenderPolicyST(Params const & p);

  ~TilingRenderPolicyST();

  void SetRenderFn(TRenderFn renderFn);
};