Files
wxWidgets/src/cocoa/dcscreen.cpp
Julian Smart 0a53b9b8fe Missed reversions
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27433 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2004-05-25 17:31:17 +00:00

37 lines
857 B
C++

/////////////////////////////////////////////////////////////////////////////
// Name: src/cocoa/dcscreen.cpp
// Purpose: wxScreenDC class
// Author: David Elliott
// Modified by:
// Created: 2003/03/16
// RCS-ID: $Id:
// Copyright: (c) 2002 David Elliott
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#include "wx/wxprec.h"
#ifndef WX_PRECOMP
#include "wx/dcscreen.h"
#endif //WX_PRECOMP
//-----------------------------------------------------------------------------
// wxMemoryDC
//-----------------------------------------------------------------------------
IMPLEMENT_DYNAMIC_CLASS(wxScreenDC,wxDC)
wxScreenDC::wxScreenDC(void)
{
m_ok = false;
};
wxScreenDC::wxScreenDC( wxDC *WXUNUSED(dc) )
{
m_ok = false;
};
wxScreenDC::~wxScreenDC(void)
{
}