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

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

#include "framework.hpp"
#include "../std/shared_ptr.hpp"

class WindowHandle;

template <typename TModel>
class FrameworkFactory
{
public:
  static Framework<TModel> * CreateFramework(shared_ptr<WindowHandle> const & wh, size_t bottomShift);
};