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