]> git.saurik.com Git - wxWidgets.git/blame - src/cocoa/ObjcRef.mm
No real changes, just remove wxIsDebuggerRunning() stub from wxOSX.
[wxWidgets.git] / src / cocoa / ObjcRef.mm
CommitLineData
fa8114de 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: src/cocoa/ObjcRef.mm
fa8114de
DE
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>
526954c5 9// Licence: wxWindows 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