]>
Commit | Line | Data |
---|---|---|
3d7e98ed DE |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/cocoa/fontenum.mm | |
3 | // Purpose: wxFontEnumerator class for Cocoa | |
4 | // Author: David Elliott | |
5 | // Modified by: | |
6 | // Created: 2003/07/23 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) David Elliott | |
065e208e | 9 | // Licence: wxWidgets licence |
3d7e98ed DE |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #include "wx/wxprec.h" | |
13 | #ifndef WX_PRECOMP | |
14 | #endif | |
15 | ||
16 | #include "wx/fontenum.h" | |
17 | ||
18 | bool wxFontEnumerator::EnumerateFacenames(wxFontEncoding encoding, | |
19 | bool fixedWidthOnly) | |
20 | { | |
21 | return false; | |
22 | } | |
23 | ||
24 | bool wxFontEnumerator::EnumerateEncodings(const wxString& family) | |
25 | { | |
26 | return false; | |
27 | } | |
28 |