]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/dcscreen.cpp
preliminary implementation of wxEVT_MENU_OPEN/CLOSE for Mac
[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
7// RCS-ID: $Id:
8// Copyright: (c) 2002 David Elliott
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12#include "wx/dcscreen.h"
13
14//-----------------------------------------------------------------------------
15// wxMemoryDC
16//-----------------------------------------------------------------------------
17
18IMPLEMENT_DYNAMIC_CLASS(wxScreenDC,wxDC)
19
20wxScreenDC::wxScreenDC(void)
21{
22 m_ok = false;
23};
24
25wxScreenDC::wxScreenDC( wxDC *WXUNUSED(dc) )
26{
27 m_ok = false;
28};
29
30wxScreenDC::~wxScreenDC(void)
31{
32}
33