home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / EODEV.Z / NSObjectAdditions.h < prev    next >
Encoding:
Text File  |  1996-08-23  |  593 b   |  25 lines

  1. /*
  2.         Copyright (c) 1996, NeXT Software, Inc.
  3.         All rights reserved.
  4.  
  5.         You may freely copy, distribute and reuse the code in this example.
  6.         NeXT disclaims any warranty of any kind, expressed or implied,
  7.         as to its fitness for any particular use.
  8. */
  9. #import <Foundation/Foundation.h>
  10.  
  11. @interface NSObject(NSObjectAdditions )
  12.  
  13. - (NSString *)className;
  14.     // In order to be able to display the class name from
  15.     // an association to a controller.
  16.  
  17. @end
  18.  
  19. @interface NSArray(NSDecimalNumberAdditions)
  20.  
  21. - (NSDecimalNumber *)sumArrayWithKey:(NSString *)key;
  22.  
  23. @end
  24.  
  25.