home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-1.iso / NeXTanswers / Files / Foundation / 1721_Encoding_Foundation_classes_with_Distributed_Objects.rtfd / FoundationExtensionsPrivate.h < prev    next >
Encoding:
Text File  |  1995-05-08  |  654 b   |  33 lines

  1. /*
  2.  *  Private classes for the compatibility routines between the old DO
  3.  *  mechanisms and the new Foundation objects.
  4.  *
  5.  *  No guarantee is made for the fitness of this code for any particular
  6.  *  use.  No warranty expressed or implied.  Use at your own risk!
  7.  *
  8.  *  Randy Tidd
  9.  *  NeXT Premium Developer Support
  10.  */
  11. #import <foundation/NSArray.h>
  12. #import <foundation/NSDictionary.h>
  13. #import <objc/Object.h>
  14.  
  15. @interface _NSArrayPlaceHolder : Object
  16. {
  17.     NSArray *array;
  18. }
  19.  
  20. - initWithArray:(NSArray *)array;
  21.  
  22. @end
  23.  
  24. @interface _NSDictionaryPlaceHolder : Object
  25. {
  26.     NSDictionary *dictionary;
  27. }
  28.  
  29. - initWithDictionary:(NSDictionary *)dictionary;
  30.  
  31. @end
  32.  
  33.