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

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

namespace iphone
{
	WindowHandle::WindowHandle(bool & doRepaint)
  {
    m_doRepaint = &doRepaint;
	}

	void WindowHandle::invalidateImpl()
	{
    *m_doRepaint = true;
  }
}