Files
wxWidgets/src/cocoa/ObjcRef.mm
Julian Smart 065e208ec0 More name change
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27405 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2004-05-23 15:10:40 +00:00

26 lines
698 B
Plaintext

/////////////////////////////////////////////////////////////////////////////
// Name: cocoa/ObjcRef.mm
// Purpose: wxObjcAutoRefBase implementation
// Author: David Elliott
// Modified by:
// Created: 2004/03/28
// RCS-ID: $Id$
// Copyright: (c) 2004 David Elliott <dfe@cox.net>
// Licence: wxWidgets licence
/////////////////////////////////////////////////////////////////////////////
#include "wx/cocoa/ObjcRef.h"
#include <Foundation/NSObject.h>
/*static*/ struct objc_object* wxObjcAutoRefBase::ObjcRetain(struct objc_object* obj)
{
return [obj retain];
}
/*static*/ void wxObjcAutoRefBase::ObjcRelease(struct objc_object* obj)
{
[obj release];
}