2015-03-31 18:02:57 -07:00
|
|
|
#import <UIKit/UIKit.h>
|
2015-04-01 10:32:53 -07:00
|
|
|
#import <AVFoundation/AVFoundation.h>
|
2015-07-27 16:08:33 +06:00
|
|
|
#import "CameraFocusSquare.h"
|
2015-03-31 18:02:57 -07:00
|
|
|
|
2015-04-02 02:40:03 -07:00
|
|
|
@class RCTCameraManager;
|
2015-03-31 18:02:57 -07:00
|
|
|
|
|
|
|
@interface RCTCamera : UIView
|
|
|
|
|
2015-04-10 19:56:30 -07:00
|
|
|
@property (nonatomic) RCTCameraManager *manager;
|
2015-08-11 19:23:06 +06:00
|
|
|
@property (nonatomic) RCTBridge *bridge;
|
2015-07-27 16:08:33 +06:00
|
|
|
@property (nonatomic) RCTCameraFocusSquare *camFocus;
|
2015-04-08 13:51:31 -07:00
|
|
|
|
2015-08-11 19:23:06 +06:00
|
|
|
- (id)initWithManager:(RCTCameraManager*)manager bridge:(RCTBridge *)bridge;
|
2015-03-31 18:02:57 -07:00
|
|
|
|
2015-04-01 10:32:53 -07:00
|
|
|
@end
|