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

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

#include "overlay_renderer.hpp"

namespace graphics
{
  class Screen : public OverlayRenderer
  {
  private:
  public:

    typedef OverlayRenderer::Params Params;

    Screen(Params const & params) : OverlayRenderer(params)
    {}
  };
}