main
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
9#import <Foundation/Foundation.h>
10
11typedef id (^KWFutureObjectBlock)(void);
12
13@interface KWFutureObject : NSObject {
14 KWFutureObjectBlock block;
15}
16+ (id)objectWithObjectPointer:(id *)pointer;
17+ (id)futureObjectWithBlock:(KWFutureObjectBlock)block;
18- (id)initWithBlock:(KWFutureObjectBlock)aBlock;
19- (id)object;
20@end