mirror of
https://github.com/purplecabbage/phonegap-plugins.git
synced 2026-04-24 03:00:11 -04:00
18 lines
371 B
Objective-C
18 lines
371 B
Objective-C
//
|
|
// OCRPlugin.h
|
|
// pruebaTesseract
|
|
//
|
|
// Created by Admin on 09/06/12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
#import <Cordova/CDV.h>
|
|
@class claseAuxiliar;
|
|
|
|
@interface OCRPlugin : CDVPlugin
|
|
|
|
@property (nonatomic, copy) NSString* callbackID;
|
|
|
|
- (void) recogniseOCR:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
|
|
|
|
@end
|