1996-03-22 00:37:53 +00:00
|
|
|
/* Callbacks for the Objective-C object type. */
|
|
|
|
/* Copyright (C) 1996 Free Software Foundation, Inc. */
|
|
|
|
|
|
|
|
/* Author: Albin L. Jones <Albin.L.Jones@Dartmouth.EDU>
|
|
|
|
* Created: Sat Feb 10 15:55:51 EST 1996
|
|
|
|
* Updated: Sun Feb 11 01:42:20 EST 1996
|
|
|
|
* Serial: 96.02.11.05
|
|
|
|
*
|
1996-05-12 00:56:10 +00:00
|
|
|
* This file is part of the GNUstep Base Library.
|
1996-03-22 00:37:53 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
1999-09-09 02:56:20 +00:00
|
|
|
* Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
|
1996-03-22 00:37:53 +00:00
|
|
|
|
|
|
|
/**** Included Headers *******************************************************/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2000-03-24 05:40:19 +00:00
|
|
|
#include "config.h"
|
1996-03-22 00:37:53 +00:00
|
|
|
#include <Foundation/NSObject.h>
|
|
|
|
#include <Foundation/NSString.h>
|
1998-12-20 21:27:47 +00:00
|
|
|
#include <base/o_cbs.h>
|
1996-03-22 00:37:53 +00:00
|
|
|
|
|
|
|
/**** Function Implementations ***********************************************/
|
|
|
|
|
|
|
|
/* FIXME: It sure would be nice if we had a way of checking whether
|
|
|
|
* or not these objects responded to the messages we're sending them here.
|
|
|
|
* We need a way that is independent of whether we have GNUStep objects,
|
|
|
|
* NEXTSTEP objects, or GNU objects. We could certainly just use the
|
|
|
|
* same trick that the `respondsToSelector:' method itself uses, but I'd hoped
|
|
|
|
* that there was already a built-in call to do this sort of thing. */
|
|
|
|
|
|
|
|
size_t
|
1996-04-17 19:26:04 +00:00
|
|
|
o_id_hash(id obj)
|
1996-03-22 00:37:53 +00:00
|
|
|
{
|
|
|
|
return (size_t)[obj hash];
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-04-17 19:26:04 +00:00
|
|
|
o_id_compare(id obj, id jbo)
|
1996-03-22 00:37:53 +00:00
|
|
|
{
|
|
|
|
return (int)[obj compare:jbo];
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-04-17 19:26:04 +00:00
|
|
|
o_id_is_equal(id obj, id jbo)
|
1996-03-22 00:37:53 +00:00
|
|
|
{
|
|
|
|
return (int)[obj isEqual:jbo];
|
|
|
|
}
|
|
|
|
|
|
|
|
const void *
|
1996-04-17 19:26:04 +00:00
|
|
|
o_id_retain(id obj)
|
1996-03-22 00:37:53 +00:00
|
|
|
{
|
|
|
|
return (const void *)[obj retain];
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1996-04-17 19:26:04 +00:00
|
|
|
o_id_release(id obj)
|
1996-03-22 00:37:53 +00:00
|
|
|
{
|
|
|
|
[obj release];
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSString *
|
1996-04-17 19:26:04 +00:00
|
|
|
o_id_describe(id obj)
|
1996-03-22 00:37:53 +00:00
|
|
|
{
|
|
|
|
return [obj description];
|
|
|
|
}
|
|
|
|
|