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

WindowHandle.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 394e82aa8128d9b0e5ff5630a36f2094090d7af8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import "RenderContext.hpp"

#include "../../../map/window_handle.hpp"

@class EAGLView;

namespace iphone
{
  class WindowHandle : public ::WindowHandle
  {
    bool * m_doRepaint;

	public:
    WindowHandle(bool & doRepaint);
	  virtual void invalidateImpl();
  };
}