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