This header is used by public headers and hence is not really private, move it
to a better place and add it to the list of OSX headers in the bakefile.
Closes #14339.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71567
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wx/osx/core/cfref.h \
wx/osx/core/cfstring.h \
wx/osx/core/hid.h \
+ wx/osx/core/objcid.h \
wx/osx/core/private.h \
wx/osx/core/stdpaths.h \
wx/osx/core/private/strconv_cf.h \
wx/osx/core/cfref.h \
wx/osx/core/cfstring.h \
wx/osx/core/hid.h \
+ wx/osx/core/objcid.h \
wx/osx/core/private.h \
wx/osx/core/stdpaths.h \
wx/osx/core/private/strconv_cf.h \
wx/osx/core/cfref.h \
wx/osx/core/cfstring.h \
wx/osx/core/hid.h \
+ wx/osx/core/objcid.h \
wx/osx/core/private.h \
wx/osx/core/stdpaths.h \
wx/osx/core/private/strconv_cf.h
wx/osx/core/cfref.h \
wx/osx/core/cfstring.h \
wx/osx/core/hid.h \
+ wx/osx/core/objcid.h \
wx/osx/core/private.h \
wx/osx/core/stdpaths.h \
wx/osx/core/private/strconv_cf.h
wx/osx/core/cfref.h \
wx/osx/core/cfstring.h \
wx/osx/core/hid.h \
+ wx/osx/core/objcid.h \
wx/osx/core/private.h \
wx/osx/core/stdpaths.h \
wx/osx/core/private/strconv_cf.h
wx/osx/core/cfref.h \
wx/osx/core/cfstring.h \
wx/osx/core/hid.h \
+ wx/osx/core/objcid.h \
wx/osx/core/private.h \
wx/osx/core/stdpaths.h \
wx/osx/core/private/strconv_cf.h
wx/osx/core/cfref.h \
wx/osx/core/cfstring.h \
wx/osx/core/hid.h \
+ wx/osx/core/objcid.h \
wx/osx/core/private.h \
wx/osx/core/stdpaths.h \
wx/osx/core/private/strconv_cf.h
wx/osx/core/cfref.h
wx/osx/core/cfstring.h
wx/osx/core/hid.h
+ wx/osx/core/objcid.h
wx/osx/core/private.h
wx/osx/core/stdpaths.h
wx/osx/core/private/strconv_cf.h
--- /dev/null
+///////////////////////////////////////////////////////////////////////////////
+// Name: wx/osx/core/objcid.h
+// Purpose: Define wxObjCID working in both C++ and Objective-C.
+// Author: Vadim Zeitlin
+// Created: 2012-05-20
+// RCS-ID: $Id: wxhead.h,v 1.12 2010-04-22 12:44:51 zeitlin Exp $
+// Copyright: (c) 2012 Vadim Zeitlin <vadim@wxwidgets.org>
+// Licence: wxWindows licence
+///////////////////////////////////////////////////////////////////////////////
+
+#ifndef _WX_OSX_CORE_OBJCID_H_
+#define _WX_OSX_CORE_OBJCID_H_
+
+// ----------------------------------------------------------------------------
+// wxObjCID: Equivalent of Objective-C "id" that works in C++ code.
+// ----------------------------------------------------------------------------
+
+#ifdef __OBJC__
+ #define wxObjCID id
+#else
+ typedef struct objc_object* wxObjCID;
+#endif
+
+#endif // _WX_OSX_CORE_OBJCID_H_
+++ /dev/null
-///////////////////////////////////////////////////////////////////////////////
-// Name: osx/private/objcid.h
-// Purpose: Define wxObjCID working in both C++ and Objective-C.
-// Author: Vadim Zeitlin
-// Created: 2012-05-20
-// RCS-ID: $Id: wxhead.h,v 1.12 2010-04-22 12:44:51 zeitlin Exp $
-// Copyright: (c) 2012 Vadim Zeitlin <vadim@wxwidgets.org>
-// Licence: wxWindows licence
-///////////////////////////////////////////////////////////////////////////////
-
-#ifndef _WX_OSX_PRIVATE_OBJCID_H_
-#define _WX_OSX_PRIVATE_OBJCID_H_
-
-// ----------------------------------------------------------------------------
-// wxObjCID: Equivalent of Objective-C "id" that works in C++ code.
-// ----------------------------------------------------------------------------
-
-#ifdef __OBJC__
- #define wxObjCID id
-#else
- typedef struct objc_object* wxObjCID;
-#endif
-
-#endif // _WX_OSX_PRIVATE_OBJCID_H_
#include "wx/control.h"
#include "wx/webview.h"
-#include "wx/osx/private/objcid.h"
+#include "wx/osx/core/objcid.h"
// ----------------------------------------------------------------------------
// Web Kit Control
#if wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT && (defined(__WXOSX_COCOA__) \
|| defined(__WXOSX_CARBON__))
-#include "wx/osx/private/objcid.h"
+#include "wx/osx/core/objcid.h"
class WXDLLIMPEXP_WEBVIEW wxWebViewHistoryItem
{