home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / Database / OTC_EOFBetaExamples_V1.0 / EOFramework / Buffering / NSObject-IBFixes.m < prev    next >
Encoding:
Text File  |  1994-07-30  |  498 b   |  38 lines

  1. #import <foundation/NSObject.h>
  2.  
  3.  
  4.  
  5. @implementation NSObject(IBFixes)
  6.  
  7. + (BOOL)_canAlloc
  8. {
  9.   return YES;
  10. }
  11.  
  12.  
  13. - (BOOL)isKindOf:aClass
  14. {
  15.   return [self isKindOfClass:aClass];
  16. }
  17.  
  18.  
  19. - (BOOL)respondsTo:(SEL)aSelector
  20. {
  21.   return [self respondsToSelector:aSelector];
  22. }
  23.  
  24.  
  25. - perform:(SEL)aSelector with:anObject
  26. {
  27.   return [self perform:aSelector withObject:anObject];
  28. }
  29.  
  30.  
  31. - perform:(SEL)aSelector with:object1 with:object2
  32. {
  33.   return [self perform:aSelector withObject:object1 withObject:object2];
  34. }
  35.  
  36.  
  37. @end 
  38.