]> git.saurik.com Git - wxWidgets.git/blame - src/common/dcbufcmn.cpp
Better place for coordinate mirroring and removal
[wxWidgets.git] / src / common / dcbufcmn.cpp
CommitLineData
2e992e06
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: src/common/dcbufcmn.cpp
3// Purpose: Buffered DC implementation
4// Author: Ron Lee, Jaakko Salli
5// Modified by:
6// Created: Sep-20-2006
7// RCS-ID: $Id$
8// Copyright: (c) wxWidgets team
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
24 #pragma hdrstop
25#endif
26
27#ifndef WX_PRECOMP
28#endif
29
30#include "wx/dcbuffer.h"
31
32
33// ============================================================================
34// implementation
35// ============================================================================
36
19c9f36f
RD
37// This file is intentionally empty. It has not been removed in case another
38// wxBufferedDC reimplementation is attempted in the near future. If not then
39// this file can be removed and the bakefiles updated.
2e992e06 40