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
This commit is contained in:
Vadim Zeitlin 2009-02-04 08:06:42 +00:00
parent 0295d4483b
commit cff6c9a81a
2 changed files with 26 additions and 0 deletions

14
include/wx/ptr_scpd.h Normal file
View File

@ -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 <vadim@wxwidgets.org>
// 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"

12
include/wx/ptr_shrd.h Normal file
View File

@ -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 <vadim@wxwidgets.org>
// Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////////
// do not include this file in any new code, include wx/sharedptr.h instead
#include "wx/sharedptr.h"