luxlabs header browser preview


@class NSArray, CLGeocoder, CLLocation;

@interface OFCLGeocoderOperation : OFNSOperation {
    CLGeocoder *_geocoder;
    CLLocation *_location;
    double _accuracy;
}

@property (retain) NSArray *placemarks;

+ (id)operationWithLocation:(id)a0;
+ (id)operationWithLocation:(id)a0 accuracy:(double)a1;
+ (double)recommendedAccuracy;

- (void)dealloc;
- (void)cancelOperation;
- (unsigned long long)launchOperation;
- (void)finishOperation;
- (void)cleanupOperation;
- (id)initWithLocation:(id)a0 accuracy:(double)a1;

@end