NSObject and NSRunLoop updates for MacOS-X compatibility

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@14349 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2002-08-27 14:24:54 +00:00
parent a9de34eb69
commit c45f681d6d
4 changed files with 84 additions and 0 deletions

View file

@ -1494,6 +1494,14 @@ static BOOL double_release_check_enabled = NO;
return NO;
}
/**
* Returns YES if the receiver is aClass or a subclass of aClass.
*/
+ (BOOL) isSubclassOfClass: (Class)aClass
{
return GSObjCIsKindOf(self, aClass);
}
/**
* Causes the receiver to execute the method implementation corresponding
* to aSelector and returns the result.<br />