git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22349 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
29 lines
724 B
Plaintext
29 lines
724 B
Plaintext
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: src/cocoa/fontenum.mm
|
|
// Purpose: wxFontEnumerator class for Cocoa
|
|
// Author: David Elliott
|
|
// Modified by:
|
|
// Created: 2003/07/23
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) David Elliott
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "wx/wxprec.h"
|
|
#ifndef WX_PRECOMP
|
|
#endif
|
|
|
|
#include "wx/fontenum.h"
|
|
|
|
bool wxFontEnumerator::EnumerateFacenames(wxFontEncoding encoding,
|
|
bool fixedWidthOnly)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool wxFontEnumerator::EnumerateEncodings(const wxString& family)
|
|
{
|
|
return false;
|
|
}
|
|
|