]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/ObjcRef.mm
Added wxTreebook:
[wxWidgets.git] / src / cocoa / ObjcRef.mm
CommitLineData
fa8114de
DE
1/////////////////////////////////////////////////////////////////////////////
2// Name: cocoa/ObjcRef.mm
3// Purpose: wxObjcAutoRefBase implementation
4// Author: David Elliott
5// Modified by:
6// Created: 2004/03/28
7// RCS-ID: $Id$
8// Copyright: (c) 2004 David Elliott <dfe@cox.net>
065e208e 9// Licence: wxWidgets licence
fa8114de
DE
10/////////////////////////////////////////////////////////////////////////////
11
12#include "wx/cocoa/ObjcRef.h"
13
14#include <Foundation/NSObject.h>
15
16/*static*/ struct objc_object* wxObjcAutoRefBase::ObjcRetain(struct objc_object* obj)
17{
18 return [obj retain];
19}
20
e76d459d 21/*static*/ void wxObjcAutoRefBase::ObjcRelease(struct objc_object* obj)
fa8114de 22{
e76d459d 23 [obj release];
fa8114de
DE
24}
25