home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / OpenStepConversion / 3.3Headers / eoaccess / EONull.h < prev    next >
Encoding:
Text File  |  1994-10-12  |  603 b   |  25 lines

  1. // EONull.h
  2. // Copyright (c) 1994, NeXT Computer, Inc.  All rights reserved.
  3.  
  4. #import <foundation/NSArray.h>
  5. #import <foundation/NSData.h>
  6. #import <foundation/NSDictionary.h>
  7. #import <foundation/NSObject.h>
  8. #import <foundation/NSString.h>
  9.  
  10.  
  11. // The EONull class represents null values in the database server.  You can
  12. // check whether any attribute value is null by comparing with the EONull
  13. // instance.
  14. //
  15. //     if (myValue == [EONull null]) ...
  16.  
  17.  
  18. @interface EONull:NSObject <NSCopying>
  19.  
  20. + (EONull *)null;
  21.     // Returns a unique instance representing null values in the database
  22.     // server.
  23.  
  24. @end
  25.