Added more files containing original code and empty stubs
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19687 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
33
src/cocoa/dcscreen.cpp
Normal file
33
src/cocoa/dcscreen.cpp
Normal file
@@ -0,0 +1,33 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// 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/dcscreen.h"
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// wxMemoryDC
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
IMPLEMENT_DYNAMIC_CLASS(wxScreenDC,wxDC)
|
||||
|
||||
wxScreenDC::wxScreenDC(void)
|
||||
{
|
||||
m_ok = false;
|
||||
};
|
||||
|
||||
wxScreenDC::wxScreenDC( wxDC *WXUNUSED(dc) )
|
||||
{
|
||||
m_ok = false;
|
||||
};
|
||||
|
||||
wxScreenDC::~wxScreenDC(void)
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user