OliveappCameraImageCaptureDelegate.h 323 B

123456789101112131415161718
  1. //
  2. // CameraPreviewHandler.h
  3. //
  4. //
  5. // Created by jqshen on 6/24/15.
  6. // Copyright (c) 2015 Oliveapp. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "OliveappPhotoImage.h"
  10. @protocol OliveappCameraImageCaptureDelegate <NSObject>
  11. @required
  12. - (void) onImageCapture: (OliveappPhotoImage *) image;
  13. @end