]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/dcscreen.cpp
Halfway reasonable implementation of wxFont for wxCocoa.
[wxWidgets.git] / src / cocoa / dcscreen.cpp
CommitLineData
812edc25
DE
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/cocoa/dcscreen.cpp
3// Purpose: wxScreenDC class
4// Author: David Elliott
5// Modified by:
6// Created: 2003/03/16
11dbb4bf 7// RCS-ID: $Id$
812edc25 8// Copyright: (c) 2002 David Elliott
11dbb4bf 9// Licence: wxWindows license
812edc25
DE
10/////////////////////////////////////////////////////////////////////////////
11
449c5673 12#include "wx/wxprec.h"
11dbb4bf
WS
13
14#include "wx/dcscreen.h"
15
449c5673 16#ifndef WX_PRECOMP
449c5673 17#endif //WX_PRECOMP
812edc25
DE
18
19//-----------------------------------------------------------------------------
20// wxMemoryDC
21//-----------------------------------------------------------------------------
22
23IMPLEMENT_DYNAMIC_CLASS(wxScreenDC,wxDC)
24
25wxScreenDC::wxScreenDC(void)
26{
11dbb4bf
WS
27 m_ok = false;
28}
812edc25
DE
29
30wxScreenDC::wxScreenDC( wxDC *WXUNUSED(dc) )
31{
11dbb4bf
WS
32 m_ok = false;
33}
812edc25
DE
34
35wxScreenDC::~wxScreenDC(void)
36{
37}