KWAny.h 350 B

1234567891011121314151617
  1. //
  2. // Licensed under the terms in License.txt
  3. //
  4. // Copyright 2010 Allen Ding. All rights reserved.
  5. //
  6. #import "KiwiConfiguration.h"
  7. // KWAny exists to determine arguments in a message pattern that should
  8. // match any value. Used for pointers as well as for scalar values.
  9. @interface KWAny : NSObject
  10. #pragma mark - Initializing
  11. + (id)any;
  12. @end