KWNull.h 402 B

123456789101112131415161718
  1. //
  2. // Licensed under the terms in License.txt
  3. //
  4. // Copyright 2010 Allen Ding. All rights reserved.
  5. //
  6. #import "KiwiConfiguration.h"
  7. // KWNull exists to represent the same thing as NSNull, except that Kiwi needs
  8. // to distinguish between null singletons used internally and those a user
  9. // is using as an object parameter.
  10. @interface KWNull : NSObject
  11. #pragma mark - Initializing
  12. + (id)null;
  13. @end