1 // This file is part of VSTGUI. It is subject to the license terms
2 // in the LICENSE file found in the top-level directory of this
3 // distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
4 
5 #pragma once
6 
7 #include "../iplatformwindow.h"
8 
9 extern "C"
10 {
11 	typedef union _GdkEvent GdkEvent;
12 	typedef struct _GdkWindow GdkWindow;
13 };
14 
15 //------------------------------------------------------------------------
16 namespace VSTGUI {
17 namespace Standalone {
18 namespace Platform {
19 namespace GDK {
20 
21 //------------------------------------------------------------------------
22 class IGdkWindow : public Interface
23 {
24 public:
25 };
26 
27 //------------------------------------------------------------------------
28 } // GDK
29 } // Platform
30 } // Standalone
31 } // VSTGUI
32