luxlabs header browser preview


@class NSMutableArray;

@interface VCPObjectPool : NSObject {
    id /* block */ _allocator;
    NSMutableArray *_objects;
}

+ (id)objectPoolWithAllocator:(id /* block */)a0;

- (void)returnObject:(id)a0;
- (id)initWithAllocator:(id /* block */)a0;
- (void).cxx_destruct;
- (id)getObject;

@end