KWFutureObject.h 439 B

1234567891011121314151617181920
  1. //
  2. // KWFutureObject.h
  3. // iOSFalconCore
  4. //
  5. // Created by Luke Redpath on 13/01/2011.
  6. // Copyright 2011 LJR Software Limited. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. typedef id (^KWFutureObjectBlock)(void);
  10. @interface KWFutureObject : NSObject
  11. + (id)objectWithObjectPointer:(id *)pointer;
  12. + (id)futureObjectWithBlock:(KWFutureObjectBlock)block;
  13. - (id)initWithBlock:(KWFutureObjectBlock)aBlock;
  14. - (id)object;
  15. @end