All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
INativeWindowProvider.h
1 // Copyright eeGeo Ltd (2017), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include <jni.h>
7 #include <android/native_window.h>
8 
9 namespace Eegeo
10 {
11  namespace Android
12  {
13  namespace Sdk
14  {
16  {
17  public:
18  virtual ~INativeWindowProvider() {}
19 
20  virtual ANativeWindow* GetNativeWindow() const = 0;
21  };
22  }
23  }
24 }