From cff6c9a81aa4069c36d478965246911478794b80 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 4 Feb 2009 08:06:42 +0000 Subject: [PATCH] added back compatibility headers (apparently svn can't do move+add in a single commit) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/ptr_scpd.h | 14 ++++++++++++++ include/wx/ptr_shrd.h | 12 ++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 include/wx/ptr_scpd.h create mode 100644 include/wx/ptr_shrd.h diff --git a/include/wx/ptr_scpd.h b/include/wx/ptr_scpd.h new file mode 100644 index 0000000000..ce8d7819c8 --- /dev/null +++ b/include/wx/ptr_scpd.h @@ -0,0 +1,14 @@ +/////////////////////////////////////////////////////////////////////////////// +// Name: wx/ptr_scpd.h +// Purpose: compatibility wrapper for wxScoped{Ptr,Array} +// Author: Vadim Zeitlin +// Created: 2009-02-03 +// RCS-ID: $Id$ +// Copyright: (c) 2009 Vadim Zeitlin +// Licence: wxWindows licence +/////////////////////////////////////////////////////////////////////////////// + +// do not include this file in any new code, include either wx/scopedptr.h or +// wx/scopedarray.h (or both) instead +#include "wx/scopedarray.h" +#include "wx/scopedptr.h" diff --git a/include/wx/ptr_shrd.h b/include/wx/ptr_shrd.h new file mode 100644 index 0000000000..e32351fe79 --- /dev/null +++ b/include/wx/ptr_shrd.h @@ -0,0 +1,12 @@ +/////////////////////////////////////////////////////////////////////////////// +// Name: wx/ptr_shrd.h +// Purpose: compatibility wrapper for wx/sharedptr.h +// Author: Vadim Zeitlin +// Created: 2009-02-03 +// RCS-ID: $Id$ +// Copyright: (c) 2009 Vadim Zeitlin +// Licence: wxWindows licence +/////////////////////////////////////////////////////////////////////////////// + +// do not include this file in any new code, include wx/sharedptr.h instead +#include "wx/sharedptr.h" -- 2.45.2