#import "ICamera.h" #import "CameraSingletonBase.h" @interface CameraSingleton : CameraSingletonBase { } -(NSString*)getInitialDefaultID; /* Returns the cameras present on your device, allowing you to access your device's front or back camera. */ -(void) enumerate:(id)methodResult; /* Returns the camera of requested type if that camera exist - else return nil. */ -(void) getCameraByType:(NSString*)cameraType methodResult:(id)methodResult; /* Choose a picture from the album. */ -(void) choosePicture:(NSDictionary*)propertyMap methodResult:(id)methodResult; /* Save an image to the device gallery. */ -(void) copyImageToDeviceGallery:(NSString*)pathToImage methodResult:(id)methodResult; @end