1 /*
2    Copyright (C) 2011 Free Software Foundation, Inc.
3 
4    Author: Eric Wasylishen <ewasylishen@gmail.com>
5 
6    This file is part of GNUstep.
7 
8    This library is free software; you can redistribute it and/or
9    modify it under the terms of the GNU Lesser General Public
10    License as published by the Free Software Foundation; either
11    version 2 of the License, or (at your option) any later version.
12 
13    This library is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
16    Lesser General Public License for more details.
17 
18    You should have received a copy of the GNU Lesser General Public
19    License along with this library; see the file COPYING.LIB.
20    If not, see <http://www.gnu.org/licenses/> or write to the
21    Free Software Foundation, 51 Franklin Street, Fifth Floor,
22    Boston, MA 02110-1301, USA.
23 */
24 
25 #ifndef XGCairoXModernSurface_h
26 #define XGCairoXModernSurface_h
27 
28 #include "cairo/CairoSurface.h"
29 
30 @interface XGCairoModernSurface : CairoSurface
31 {
32   @private
33     cairo_surface_t *_windowSurface;
34 }
35 @end
36 
37 #endif
38 
39