// Note that Xcode gets this line wrong.  You need to change "Cordova.h" to "CDV.h" as shown below.
#import <Cordova/CDV.h>

// Import the CustomCameraViewController class
#import "CustomCameraTawsifViewController.h"

@interface CustomCameraTawsif : CDVPlugin

// Cordova command method
-(void) openCamera:(CDVInvokedUrlCommand*)command;

// Create and override some properties and methods (these will be explained later)
-(void) capturedImageWithPath:(NSDictionary*)capturedData;
-(void) closeCamera:(NSString*)imagePath;
-(void) changeImageSource:(NSString*)imagePath;
@property (strong, nonatomic) CustomCameraTawsifViewController* overlay;
@property (strong, nonatomic) CDVInvokedUrlCommand* latestCommand;
@property (readwrite, assign) BOOL hasPendingOperation;

@end
