KWSharedExampleRegistry.h 373 B

1234567891011121314151617
  1. //
  2. // Licensed under the terms in License.txt
  3. //
  4. // Copyright 2014 Allen Ding. All rights reserved.
  5. //
  6. #import <Foundation/Foundation.h>
  7. @class KWSharedExample;
  8. @interface KWSharedExampleRegistry : NSObject
  9. + (instancetype)sharedRegistry;
  10. - (KWSharedExample *)sharedExampleForName:(NSString *)name;
  11. - (void)registerSharedExample:(KWSharedExample *)sharedExample;
  12. @end