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