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

user_mark_dl_cache.hpp « map - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ffa7e1ba21379104815dd14a50be4a687820a0a1 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#pragma once

#include "drape/drape_global.hpp"

#include "base/math.hpp"

#include "std/map.hpp"

class UserMarkDLCache
{
public:
  struct Key
  {
    Key(string const & name, dp::Anchor anchor, double depthLayer)
      : m_name(name), m_anchor(anchor), m_depthLayer(depthLayer) {}

    string m_name;
    dp::Anchor m_anchor;
    double m_depthLayer;

    bool operator < (Key const & other) const
    {
      if (m_name != other.m_name)
        return m_name < other.m_name;
      if (!my::AlmostEqualULPs(m_depthLayer, other.m_depthLayer))
        return m_depthLayer < other.m_depthLayer;

      return m_anchor < other.m_anchor;
    }
  };

  UserMarkDLCache();
  ~UserMarkDLCache();

  ///@TODO UVR
  //graphics::DisplayList * FindUserMark(Key const & key);

private:
  //graphics::DisplayList * CreateDL(Key const & key);

private:
  //graphics::Screen * m_cacheScreen;
};