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// KWAny exists to determine arguments in a message pattern that should
10// match any value. Used for pointers as well as for scalar values.
11@interface KWAny : NSObject
12
13#pragma mark -
14#pragma mark Initializing
15
16+ (id)any;
17
18@end